You are forgetting to pass `p` CsvParser arg
    
    
    var p: CsvParser
      try:
        #discard open(fileName) # missing arg
        p.open(fileName) # this works
      except:
        raise newException(IOError, (fileName & " not found"))
    

Reply via email to