summary refs log tree commit diff stats
path: root/tests/accept/compile/treadln.nim
blob: 7703d5a566e32775b8c3af2c62238f37a36f1f9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# 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)