3 lines
90 B
Plaintext
Vendored
3 lines
90 B
Plaintext
Vendored
fun <A> applyTwice(f: (A) -> A, x: A) = f(f(x))
|
|
val x = applyTwice({ <caret>1 + it }, 40)
|