エラーが発生し続けvariable MainMirror Not introduced.
ます。これを修正するにはどうすればよいですか?
fun {MainMirror Int}
local Mirror in
fun {Mirror Int Acc}
if Int == 0 then Acc
else
Acc + {Mirror (Int div 10) (Acc mod 10)} end
end
{Mirror Int 0}
end
end
{Browse {MainMirror 1234}}