8 lines
98 B
Kotlin
8 lines
98 B
Kotlin
|
|
inline fun foo() {
|
|
do {
|
|
var x: Int = 999
|
|
println(x)
|
|
} while (x != 999)
|
|
}
|