zoukankan      html  css  js  c++  java
  • 标示符、保留字、注释

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

    --]]

  • 相关阅读:
    Vue
    Vue
    Vue
    Vue
    Vue
    kubernetes
    kubernetes
    kubernetes
    django源码bug解决方案
    UNI-APP 桌面LOGO角标设置(ios)
  • 原文地址:https://www.cnblogs.com/newlist/p/3574757.html
Copyright © 2011-2022 走看看