newlist

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

标示符:字母(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)

--]]

posted on 2014-03-01 10:31  一枚程序  阅读(240)  评论(0编辑  收藏  举报