nested table
import tables
type
innerTable = Table[string, string]
func newEmptyInnerTable(): Table[string, string] = initTable[string, string]()
var
nestT = initTable[int, innerTable]()
nestT.mgetOrPut(0, newEmptyInnerTable())["a"] = "b"
echo nestTINFO