mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
11 lines
135 B
Kotlin
11 lines
135 B
Kotlin
fun box() : String {
|
|
var a = 1
|
|
|
|
object {
|
|
{
|
|
a = 2
|
|
}
|
|
}
|
|
return if (a == 2) "OK" else "fail"
|
|
}
|