diff options
Diffstat (limited to 'tests/treadln.nim')
-rwxr-xr-x | tests/treadln.nim | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/treadln.nim b/tests/treadln.nim deleted file mode 100755 index 7703d5a56..000000000 --- a/tests/treadln.nim +++ /dev/null @@ -1,12 +0,0 @@ -# test the improved readline handling that does not care whether its -# Macintosh, Unix or Windows text format. - -var - inp: TFile - line: string - -if openFile(inp, "readme.txt"): - while not EndOfFile(inp): - line = readLine(inp) - echo("#" & line & "#") - closeFile(inp) |