7 lines
94 B
Kotlin
7 lines
94 B
Kotlin
fun test(b: Boolean) {
|
|
for (i in 1..10) {
|
|
if (b) break;
|
|
continue;
|
|
}
|
|
}
|