[Lua] 纯文本查看 复制代码 do //第一个do循环
if true then // 第1个do循环的第一个if
tap
do
if true then // 第一个do循环里的另一个do循环
tap
end if
if true then //第一个do循环里的do循环的退出条件
exit do
end if
loop // 第一个do循环里的另一个do循环结尾
end if
if true then //第一个do循环的退出条件
exit do
end if
loop //第一个do循环的结尾 |