Created
August 8, 2021 06:21
-
-
Save stravant/f2ffa88a9d494866390cbee7eb05b42c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local rowMT = { | |
__index = function(tb, key) | |
local col = {} | |
tb[key] = col | |
return col | |
end, | |
} | |
local grid = setmetatable({}, { | |
__index = function(tb, key) | |
local row = setmetatable({}, rowMT) | |
tb[key] = row | |
return row | |
end, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment