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

# Test new countup

for i in 0 ..< 10'i64:
  stdout.write(i)
echo "\n"