Files
kotlin-fork/idea/testData/scratch/for.comp.after
T

6 lines
87 B
Plaintext
Vendored

// REPL_MODE: false
for (i in 0..5) { // OUTPUT: 0; 1; 2; 3; 4; 5
println(i)
}