mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
145 B
Kotlin
13 lines
145 B
Kotlin
import zzz.*
|
|
|
|
fun box(): String {
|
|
|
|
val p = { calc { 11 }} ()
|
|
|
|
val z = { calc { 12 }}()
|
|
|
|
if (p == z) return "fail"
|
|
|
|
return "OK"
|
|
}
|