7 lines
87 B
Kotlin
7 lines
87 B
Kotlin
// OPTION: 1
|
|
fun foo(n: Int) {
|
|
<caret>for (k in 0..n) {
|
|
println(k)
|
|
}
|
|
}
|