mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
13 lines
246 B
Nim
13 lines
246 B
Nim
discard """
|
|
outputsub: "rlwuiadtrnzb"
|
|
"""
|
|
|
|
# chatever the sub pattern it will find itself
|
|
|
|
import memfiles
|
|
var inp = memfiles.open("tests/stdlib/tmemslices.nim")
|
|
for mem in memSlices(inp):
|
|
if mem.size > 3:
|
|
echo("#" & $mem & "#")
|
|
close(inp)
|