You can create a pointer.
    
    
    import tables
    
    var t = create Table[int, int]
    
    t[] = toTable {1: 2, 3: 4}
    
    echo t[]
    
    
    Run

Reply via email to