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.
我第一次看 PICO-8。
这个简单的 IF 语句给了我错误“第 1 行的未关闭函数”。
function MYTEST() local x = 1 if x==1 then print("x==1") else if x==0 then print("x==0") end end
我承认该功能没有用,但解释器不允许它运行。
为什么?
如评论中所述,将代码从更改else if为elseif使其工作。
else if
elseif
或者,在第一个end之前添加一个end:
end
function MYTEST() local x = 1 if x==1 then print("x==1") else if x==0 then print("x==0") end end end