Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -1,9 +1,13 @@
local t = {
["foo"] = "bar",
["baz"] = 6,
fortytwo = 7
}
local function f1(x) print(x) return x end
local t = { ["foo"] = "bar"
, ["baz"] = 6
, fortytwo = 7
, [42] = { 1, 2, 3 }
, [f1] = true
, ["zz"] = f1
}
for key,val in pairs(t) do
print(string.format("%s: %s", key, val))
print(string.format("%28s (%9s) -> (%9s) %s", key, type(key), type(val), val))
end