I have two functions, f
and g
, which call each other recursively. Unfortunately, when f
calls g
, it has not yet been declared, so I get an "unbound variable" error. How can I prototype (or whatever the equivalent vocabulary is) this function in SML/NJ?
views:
169answers:
2
+1
A:
Mutual Recursion. Use and
instead of fun
between the two functions.
nlucaroni
2008-09-26 15:56:32