-- Lua 5.5: a single attribute before the name list applies to every -- name in the list, like `local a, b = 10, 20`. local a, b = 10, 20 print(a, b) -- Per-name attribute (already supported) still wins for that name. local c , d = 30, 40 print(c, d)