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