summary refs log blame commit diff stats
path: root/tests/stdlib/tio.nim
blob: ebf2d70f33a6430af4027def79fe4fbadcefe274 (plain) (tree)
1
2
3
4
5
6
7






                                  
# test the file-IO

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

main()