Files
kotlin-fork/idea/testData/scratch/for.comp.after
T
2018-02-01 10:21:55 +03:00

4 lines
66 B
Plaintext
Vendored

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