当我尝试编译这段代码时,Oz 编译器会启动一个异常“Missing Else Clause”,有人能告诉我为什么吗?这是我的代码:
declare
fun {Numero x y}
local NumeroAux in
fun {NumeroAux x y Acc}
if {And (x == 0) (y == 0)} then Acc
else
if y == 0 then {NumeroAux 0 x-1 Acc+1}
else
{NumeroAux x+1 y-1 Acc+1}
end
end
end
{NumeroAux x y 0}
end
end
{Browse {Numero 0 0}}
在我看来,这段代码中没有缺少 else 子句!我的函数总是会返回一些东西。