declare
fun {Factorial N}
local FactorialAux in
fun {FactorialAux N Product}
if N == 0 then Product
else {FactorialAux N-1 {fibo N}|Product}
end
end
{FactorialAux N nil}
end
end
fun {fibo N}
if N==1 then 1
else if N==2 then 1
else {fibo N-1}+{fibo N-2}
end
end
end
{Browse {Factorial 3}}
我的代码打印斐波那契数列表。如果 N = 4,则它打印前四个斐波那契数列表这是我的代码,其中我收到问题标题中所述的错误。感谢您提前提供任何帮助