Here: 
    
    
    type MyColumn[T: static[int]] = tuple[ints: array[T, int], strings: 
array[T, string]]
    var myTable: MyColumn[3] = (ints: [1, 2, 3], strings: ["one", "two", 
"three"])
    

Reply via email to