标签: lua
Lua中的elseif和else if有什么区别?我不知道它们是否相同但较短。
elseif
else if
x= 100 y= 100 if x > 90 then ... else if y > 110 then ... else ... end end if x > 90 then ... elseif y > 110 then ... else ... end