-- 别担心,double的64位中有52位用于
-- 保存精确的int值; 对于需要52位以内的int值,
-- 机器的精度不是问题。
t = "双引号也可以"
u = [[ 两个方括号
用于
多行的字符串。]]
t = nil -- 未定义的t; Lua 支持垃圾收集。
while num < 50 do
num = num + 1 -- 没有 ++ or += 运算符。
end
if num > 40 then
print('over 40')
elseif s ~= 'walternate' then -- ~= 表示不等于。
-- 像Python一样,== 表示等于;适用于字符串。
io.write('not over 40\n') -- 默认输出到stdout。
else
-- 默认变量都是全局的。
local line = io.read() -- 读取stdin的下一行。
print('Winter is coming, ' .. line)
end
-- 这不会出错:
foo = anUnknownVariable -- 现在 foo = nil.
aBoolValue = false
--只有nil和false是fals; 0和 ''都是true!
if not aBoolValue then print('twas false') end
-- 类似于C/js里的 a?b:c 操作符:
ans = aBoolValue and 'yes' or 'no' --> 'no'
for i = 1, 100 do -- 范围包括两端
karlSum = karlSum + i
end
fredSum = 0
for j = 100, 1, -1 do fredSum = fredSum + j end
通常,范围表达式为begin, end[, step].
repeat
print('the way of the future')
num = num - 1
until num == 0