mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
111 B
Kotlin
Vendored
9 lines
111 B
Kotlin
Vendored
// OPTION: 1
|
|
fun foo(n: Int) {
|
|
var m = n
|
|
<caret>while (m > 0) {
|
|
m--
|
|
println(m)
|
|
}
|
|
}
|