summary refs log tree commit diff stats
path: root/nimdoc/test_out_index_dot_html/expected
ModeNameSize
-rw-r--r--foo.idx31log stats plain blame
-rw-r--r--index.html6045log stats plain blame
-rw-r--r--theindex.html4142log stats plain blame
re>
                          









                                        
discard """
  file: "tstreams2.nim"
  output: '''fs is: nil'''
"""
import streams
var
  fs = newFileStream("amissingfile.txt")
  line = ""
echo "fs is: ",repr(fs)
if not isNil(fs):
  while fs.readLine(line):
    echo line
  fs.close()