summary refs log tree commit diff stats
path: root/tests/iter/tcountup.nim
blob: 1559041aa3b0da68d7d7355baef68573f2529c5d (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