Hello world. Please, what is wrong with my code ?
    
    
    var
      i1 = 1
      i2 = 2
      i3 = 3
    
    proc show(i: var int) = echo i # A proc that needs var
    
    proc myProc(ii: var varargs[int]) =
      for i in mitems ii:
        show i
    
    myProc(i1, i2, i3);
    
    
    Run

Reply via email to