1 2 3 4 5 6 7 8 9 10 11 12 13
discard """ output: "abef" """ import tables var x = initTable[int, string]() x[2] = "ab" x[5] = "ef" echo x[2], x[5]