Files
Nim/tests/tio.nim
2010-02-14 00:29:35 +01:00

8 lines
110 B
Nim

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