summary refs log tree commit diff stats
path: root/tests/iter/tcountup.nim
blob: e68a614b0d27345aec1fbd67ca2e42192b57dea6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
discard """
  file: "tcountup.nim"
  output: "0123456789"
"""

# Test new countup and unary < 

for i in 0 .. < 10'i64: 
  stdout.write(i)
  
#OUT 0123456789