local x = {[10] = "A", [20] = "B", [30] = nil, [40] = false} for k, v in pairs(x) do print(k, v) end
40 false 10 A 20 B
No comments:
Post a Comment