예:
fun test(): Boolean { return 2.compareTo(1) > 0 // 바꿀 수 있는 'compareTo()' }
빠른 수정을 적용한 후:
fun test(): Boolean { return 2 > 1 }