13 lines
171 B
Kotlin
Vendored
13 lines
171 B
Kotlin
Vendored
fun test1(): Int {
|
|
var s = 0;
|
|
2.times2 {
|
|
s++
|
|
}
|
|
return s;
|
|
}
|
|
|
|
fun box(): String {
|
|
if (test1() != 2) return "test1: ${test1()}"
|
|
|
|
return "OK"
|
|
} |