13

就像在 python 中一样,我们有 pass 语句。

定义计算():
    经过

在 Lua 中是否有这样的声明?我想要做

如果连接那么
    经过
4

1 回答 1

15

pass在 Python 中什么也不做。在 Lua 中,您可以将其留空:

if connect then end

如果需要占位符,请使用空块

if connect then do end end

或者如果在 Lua 5.2 中,使用分号:

if connect then ; end
于 2013-11-12T11:10:03.887 回答