Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
就像在 python 中一样,我们有 pass 语句。
定义计算(): 经过
在 Lua 中是否有这样的声明?我想要做
如果连接那么 经过
pass在 Python 中什么也不做。在 Lua 中,您可以将其留空:
pass
if connect then end
如果需要占位符,请使用空块
if connect then do end end
或者如果在 Lua 5.2 中,使用分号:
if connect then ; end