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







                               
# Test new countup and unary < 

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