只是试图执行一个小的 Lua 脚本,但不幸的是我做错了。我没有更多的想法可能是什么错误。
function checkPrime( n )
for i = 2, n-1, 1 do
if n % i == 0 then
return false
end
end
return true
end
口译员说:
lua: /home/sebastian/luatest/test.lua:3: `then' expected near `%'
我认为这不是一件大事,也许很清楚出了什么问题。但不知何故,我现在看不到它。