Lua语法学习笔记(一)

1.定义变量
num = 100

注意:
1.定义变量不需要
2.定义变量没有类型,根据存储数据决定类型
3.变量名不能数字开头,避免下划线加大写字母;

2.注释:
1,单行注释–
2,多行注释–[[xxxx]]–

3.五种变量类型:
1,nil空数据
2,number小数类型
3,boolean布尔类型
4,string字符串类型
5,table表类型

注意:可以使用type()获取类型

4.局部变量和全局变量:
1,local关键字,定义局部变量
2,默认变量是全局变量

5.运算符:
1,+ - * % / 五种
2,<= < > >= ==
3,逻辑运算符:and or not

6.流程控制if

1,if[condition]   then
     end
2,  if[condition]   then
    else
    end
3,if[condition]    then
    elseif [condition]
    else
    end

7.循环结构

1,while[condition] do
end

2,repeat (do-while结构)
[code to execute]
un

你可能感兴趣的:(Lua学习,Lua)