如何干净地退出交互式 Lua?
我尝试过将“退出”一词放在一行上,但这似乎只是将命令行指针从“>”更改为“”。到“>>”。在交互式 Lua 中结束会话的最佳方式是什么?
I've tried to the word "quit" on a single line but this seems to simply change the command line pointer from a ">" to a ">>". What's the best way to end a session in interactive Lua please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我的系统中,在 lua 提示符中输入句号/点是有效的 -
Typing a full-stop/dot in the lua prompt works in my system -
没有
quit
关键字。如果需要,请尝试在 Unix 中使用 control-D,在 Windows 中使用 control-Z,或者使用 os.exit()。There is no
quit
keyword. Try control-D in Unix, control-Z in Windows oros.exit()
if you must.