mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
7 lines
138 B
Nim
7 lines
138 B
Nim
import memfiles
|
|
var inp = memfiles.open("readme.txt")
|
|
for mem in memSlices(inp):
|
|
if mem.size > 3:
|
|
echo("#" & $mem & "#")
|
|
close(inp)
|