There is no possibility to send a confirmation email twice. My first 
confirmation email was removed by spam filter so I wasn't able to confirmy my 
first account at all. Login and email are hashed and they're still in database 
after removing the account so there is no possibility to register the same 
nickame as removed one.

Ad rem: I tried to parse a simple cvs file. My code is:
    
    
    import parsecsv
    
    var
        p: CsvParser
    
    let filename = "CSVfile.csv"
    p.open(filename, separator=";")
    
    
    while p.readRow():
        echo(p.row)
    
    
    Run

I think one of the most confusing compiler messages is: 
    
    
    proc open(my: var CsvParser; filename: string; separator = ','; quote = 
'\"';
             escape = '\x00'; skipInitialSpace = false)
      first type mismatch at position: 2
      required type: string
      but expression 'filename' is of type: string
    
    expression: open(p, filename, separator = ";")
    
    
    Run

Type string is required but there is an error because of provided string type?

Reply via email to