mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
8 lines
105 B
Nim
8 lines
105 B
Nim
# test the file-IO
|
|
|
|
proc main() =
|
|
for line in lines("thello.nim"):
|
|
writeLine(stdout, line)
|
|
|
|
main()
|