8 lines
90 B
Kotlin
8 lines
90 B
Kotlin
// WITH_RUNTIME
|
|
|
|
val x = run {
|
|
val inLambda = 10
|
|
println(inLambda)
|
|
inLambda
|
|
}
|