function isEven(x)
print("Checking if "..x.." is even.\nWill return state as 1 if true.")
if math.fmod(x, 2) == 0 then
state = 1
end
return state
end
我知道我可以运行 isEven 然后使用状态变量。但是有没有办法在一条线上做到这一点?
喜欢isEven(8).state
?
任何和所有的帮助表示赞赏。