summary refs log tree commit diff stats
path: root/tests/stdlib/tmemslices.nim
blob: d724254a2c8acb5b329d5c6b4cfe80b4ff4d1db6 (plain) (blame)
1
2
3
4
5
6
import memfiles
var inp = memfiles.open("tests/stdlib/tmemslices.nim")
for mem in memSlices(inp):
  if mem.size > 3:
    echo("#" & $mem & "#")
close(inp)