Files
Nim/tests/stdlib/tmemlines.nim
Utwo a68a4bfaf2 Remove install.txt and readme.txt (#9521)
* Remove install.txt and readme.txt

* Refactor tests that use readme.txt

* Tests open own source code
2018-10-28 13:36:52 +01:00

6 lines
130 B
Nim

import memfiles
var inp = memfiles.open("tests/stdlib/tmemlines.nim")
for line in lines(inp):
echo("#" & line & "#")
close(inp)