like @dom mentioned this
    
    
    var envs, wavs, fms, macros: seq[tuple[name: string, values: string]]
    

all variables aren't initialized, you might to initialize them with `newSeq[T]` 
like
    
    
    type
      Info = object
        name, value: string
    
    var envs, wavs, fms, macros = newSeq[Info]()
    

Reply via email to