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

proc main() =
  for line in lines("thallo.nim"):
    writeln(stdout, line)

main()