📜  如何停止代码 roblo - Lua 代码示例

📅  最后修改于: 2022-03-11 14:54:55.104000             🧑  作者: Mango

代码示例1
-- exits the current scope

if (condition) then 
    return
    print("Hello World!")
end 

-- code won't print anything