Files
kotlin-fork/idea/scripting-support/testData/scratch/for.repl.after
T
2019-10-08 15:02:32 +03:00

6 lines
86 B
Plaintext
Vendored

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