7 lines
75 B
Plaintext
7 lines
75 B
Plaintext
fun foo(f: () -> Int) {
|
|
f()
|
|
}
|
|
|
|
fun main(args: String) {
|
|
foo { 1 }
|
|
} |