예:
fun square(a: Int, b: (Int) -> Int) { b(a * a) } fun foo() { square(2, { it }) }
빠른 수정을 적용한 후:
fun foo() { square(2){ it } }