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