10 lines
151 B
Kotlin
Vendored
10 lines
151 B
Kotlin
Vendored
// MOVE: up
|
|
fun test(i: Int) {
|
|
if (i == 1) {
|
|
run {
|
|
}
|
|
} else if (i == 2) {
|
|
} else if (i == 3) {
|
|
}
|
|
<caret>println()
|
|
} |