标示符:字母(letter)或者下划线开头的字母、下划线、数字序列. 最好不要使用下划线加大写字母的标示符,因为 Lua 的保留字也是这样的。Lua 中,Letter的含义是依赖于本地环境的。

保留字:以下字符为 Lua 的保留字,不能当作标识符。
and break do else elseif
end false for function if
in local nil not or
repeat return then true until
while
注意:Lua 是大小写敏感的.
注释:
单行注释:–
...
print(10) -- no action (comment)
...
多行注释:–[[ –]]
--[[
...
print(10) -- no action (comment)
...
--]]
1686

被折叠的 条评论
为什么被折叠?



