📜  如何退出当前范围 roblox - Lua 代码示例

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

代码示例1
-- exits the current scope

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

-- code won't print anything