summary refs log tree commit diff stats
path: root/tests/stdlib/tmemlines.nim
blob: 19821ea26b950f0420abbc37eaee77efbadd4841 (plain) (blame)
1
2
3
4
5
import memfiles
var inp = memfiles.open("readme.txt")
for line in lines(inp):
  echo("#" & line & "#")
close(inp)