Files
Nim/tests/stdlib/tio.nim
2014-01-13 02:10:03 +01:00

8 lines
110 B
Nim

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