46193f3ef7
#KT-5692 Fixed
9 lines
121 B
Kotlin
9 lines
121 B
Kotlin
package demo
|
|
|
|
class Test {
|
|
fun test() {
|
|
for (i in 0..9) {
|
|
System.out.println(i)
|
|
}
|
|
}
|
|
} |