Files
Nim/tests/compile/tio.nim
2013-03-16 23:53:07 +01:00

8 lines
110 B
Nim

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