summary refs log tree commit diff stats
path: root/tests/stdlib/tio.nim
blob: dcb6bd54f36c02df0e1fe90f0d13efb51184f21b (plain) (blame)
1
2
3
4
5
6
7
# test the file-IO

proc main() =
  for line in lines("thello.nim"):
    writeLine(stdout, line)

main()