1.一般赋值语句
local aa=1;
aa ="HELLOW WORLD"
aa ={
bb = 1,
[1] =2,
}
2.字符串的加减法(使用…而不是+)
local bb = "hellow"
bb =bb .."world"
print(bb)
-- Lua没有简化表达式
--[[
temp = 1
temp += 3
temp ++
]]
-- end
3.if判断语句
local temp =2
if temp > 1 then
print("符合条件"..temp)
end
if true and true then
print("true and true")
end
-- if elseif
temp = 35
if temp > 50 then
print("temp > 50")
elseif temp > 30 then
print("temp (30, 50]")
elseif temp > 10 then
print("temp (10, 30]")
end
4.for循环语句文章来源:https://uudwc.com/A/rZ6nE
-for循环语句,
--for 初始值, 结束值, 每次迭代的步长(可写可不写) do end
-- 从1打印到10
local i = 1
--包括了结束值
for i = 1, 10 do -- 默认步长为1
print(i)
end
for i = 1, 10, 2 do
print(i)
end
for i = 10, 1, -1 do
print(i)
end
5.while循环语句文章来源地址https://uudwc.com/A/rZ6nE
-- while循环
i = 1
sum = 0
while i <= 100 do --只要条件为真就会执行while
sum = sum + i
i = i + 1
end
print(sum)
-- end