mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
11 lines
131 B
Kotlin
11 lines
131 B
Kotlin
fun box(): String {
|
|
var i = 0
|
|
{
|
|
if (1 == 1) {
|
|
i++
|
|
} else {
|
|
}
|
|
}()
|
|
return "OK"
|
|
}
|