标签: lua
就像在python中一样,我们有pass语句。
def calcu(): pass
if connect then pass
答案 0 :(得分:10)
pass什么都不做。在Lua中,你可以把它留空:
pass
if connect then end
如果您想要占位符,请使用空块
if connect then do end end
或者如果在Lua 5.2中,请使用分号:
if connect then ; end