Reserved Identifiers
Pluto allows you to use reserved tokens such as if
from Lua and when
from Pluto as identifiers with shorthand table syntax and for goto labels.
Reserved tokens as identifiers with shorthand table syntax
local t = { when = "key"}print(t.when)
Reserved tokens as identifiers for goto labels
-- Print every number besides five.for i = 1, 10 do if i == 5 then goto continue end print(i) ::continue::end
However, variable names and function calls will not allow you to use reserved tokens as identifiers.