I would like to do something like this:
fun f () =
let
fun a() = b()
and
fun b() = a()
in
()
end
where a and b are reasonable mutually recursive functions. However, this gives:
Error: syntax error: replacing AND with SEMICOLON
Is there any way to do this?
source
share