12 lines
137 B
Kotlin
Vendored
12 lines
137 B
Kotlin
Vendored
fun box() {
|
|
lookAtMe {
|
|
42
|
|
}
|
|
}
|
|
|
|
inline fun lookAtMe(f: () -> Int) {
|
|
val a = 21
|
|
a + f()
|
|
}
|
|
|
|
// 2 13 14 3 15 5 8 9 10 |