11 lines
157 B
Kotlin
11 lines
157 B
Kotlin
fun main(args : Array<String>) {
|
|
val str = "captured"
|
|
foo {
|
|
println(it)
|
|
println(str)
|
|
}
|
|
}
|
|
|
|
fun foo(f: (Int) -> Unit) {
|
|
f(42)
|
|
} |