如何在 gopher-lua v1.1.0 中使用“goto”?看来 gopher-lua 已经在 v1.1.0 上支持“goto”链接
我已经更新了 gopher-lua 的版本为 v1.1.0。但是当我使用这样的 goto
goto
和 ::label::
语句时
for i = 1, #backupSource do
if i == 2 then
goto continue
end
::continue::
end
出现错误
near '::': syntax error
如果有人能启发我一点那就太好了:-)提前谢谢
你的问题是 :: continue :: 在循环内尝试这个。
对于 i = 1,#backupSource 执行 如果我==2那么 转到继续 结尾 结尾 ::继续::
尝试让我知道