mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
* Remove install.txt and readme.txt * Refactor tests that use readme.txt * Tests open own source code
6 lines
130 B
Nim
6 lines
130 B
Nim
import memfiles
|
|
var inp = memfiles.open("tests/stdlib/tmemlines.nim")
|
|
for line in lines(inp):
|
|
echo("#" & line & "#")
|
|
close(inp)
|