Files
Nim/tests/stdlib/tio.nim
2015-06-19 01:34:34 -05:00

8 lines
112 B
Nim

# test the file-IO
proc main() =
for line in lines("thello.nim"):
writeLine(stdout, line)
main()