Files
Nim/tests/compile/tio.nim
2011-11-19 15:45:51 +01:00

8 lines
110 B
Nim
Executable File

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