mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
15 lines
157 B
Nim
15 lines
157 B
Nim
discard """
|
|
file: "tcountup.nim"
|
|
output: "0123456789"
|
|
"""
|
|
|
|
# Test new countup and unary <
|
|
|
|
for i in 0 .. < 10'i64:
|
|
stdout.write(i)
|
|
|
|
#OUT 0123456789
|
|
|
|
|
|
|