I'm trying to get a slice from an open array and there seems to be a type 
mismatch error. Is there any way around this?
    
    
    proc xxx(r: openarray[int]) =
      processRow(r[0..9])  <- type mismatch
      ...
    

Reply via email to