Files
Nim/tests/misc/treadln.nim
Utwo a68a4bfaf2 Remove install.txt and readme.txt (#9521)
* Remove install.txt and readme.txt

* Refactor tests that use readme.txt

* Tests open own source code
2018-10-28 13:36:52 +01:00

13 lines
277 B
Nim

# test the improved readline handling that does not care whether its
# Macintosh, Unix or Windows text format.
var
inp: File
line: string
if open(inp, "tests/misc/treadln.nim"):
while not endOfFile(inp):
line = readLine(inp)
echo("#" & line & "#")
close(inp)