239cfa6d29
^KT-61800
13 lines
132 B
Kotlin
Vendored
13 lines
132 B
Kotlin
Vendored
// script
|
|
abstract class Person {
|
|
abstract val name: String
|
|
}
|
|
|
|
fun foo(action: () -> Int) {
|
|
action()
|
|
}
|
|
|
|
foo {
|
|
42 + 42
|
|
}
|