Is that correct? 
    
    
    type
      StringSlice
        src: ptr string
        a,b: int
    

Gives me a compilation error! Is it instead: 
    
    
    type
      StringSlice = object
        src: ptr string
        a,b: int
    

Also how can I use this with the type Table: 
    
    
    var t = newTable[StringSlice, int]()
    

Also gives me compilation error: type mismatch: got (StringSlice) 

Reply via email to