summary refs log tree commit diff stats
path: root/tests/misc/treadln.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/treadln.nim')
-rw-r--r--tests/misc/treadln.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/misc/treadln.nim b/tests/misc/treadln.nim
deleted file mode 100644
index 1edbea992..000000000
--- a/tests/misc/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: File
-  line: string
-
-if open(inp, "readme.txt"):
-  while not endOfFile(inp):
-    line = readLine(inp)
-    echo("#" & line & "#")
-  close(inp)