gpt4 book ai didi

lua - 如何跳过一段lua代码?

转载 作者:行者123 更新时间:2023-12-02 20:59:16 25 4
gpt4 key购买 nike

这是我的第一个 lua 项目,我在跳过部分代码时遇到了麻烦。我希望代码在“Cool”部分之后停止。因此,如果我写得好并且答案很酷,我希望其余的代码停止,因为在那之后下一个问题不再是相对的。

它是如何工作的:代码说: 你好你说:任何事代码说:你好吗?你说:好你说好之后就会说酷。如果你说不好的话,它会问“为什么?”例如你说:不好代码说:一切都会好起来的我希望它在“cool”之后停止并跳过代码的进一步部分。

os.execute(" cls ")
print("Hello")
odp = io.read()
if odp == string then
end
tof = true or false

print("How are you?")
odp2 = io.read()
if odp2 == "good" then print("Cool") tof = true
else print("Why?") tof = false
if tof == true then os.execute(" pause ")
end
end

odp3 = io.read()
if odp3 ~= math then print("It will be alright")
print("Okay, I have to go see you.")
end
os.execute(" pause ")

最佳答案

当你编译代码时,它就变成了函数的主体。退出函数的典型方法是使用 return 语句。一个函数可以有零个或多个 return 语句。

但是,由于您想退出程序,因此可以调用os.exit()

关于lua - 如何跳过一段lua代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23964356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com