summary refs log blame commit diff stats
path: root/tests/iter/tcountup.nim
blob: 1559041aa3b0da68d7d7355baef68573f2529c5d (plain) (tree)
1
2
3
4
5
6
7
8
9



                      
 
                              
 
                       
                 
 

               

 
discard """
  file: "tcountup.nim"
  output: "0123456789"
"""

# Test new countup and unary <

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

#OUT 0123456789