mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 11:12:37 +00:00
* Remove install.txt and readme.txt * Refactor tests that use readme.txt * Tests open own source code
7 lines
155 B
Nim
7 lines
155 B
Nim
import memfiles
|
|
var inp = memfiles.open("tests/stdlib/tmemslices.nim")
|
|
for mem in memSlices(inp):
|
|
if mem.size > 3:
|
|
echo("#" & $mem & "#")
|
|
close(inp)
|