blob: 20136c21fb015f5e70bd1fc63d77b3c9fbb26ef4 [file] [log] [blame]
fun main() {
(1 ..12 step 2).last == 11
(1.. 12 step 2).last == 11
(1 .. 12 step 2).last == 11
(1..12 step 2).last == 11
for (i in 1..4) print(i)
}