Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个函数,f和g,它们以递归方式相互调用。不幸的是,当f调用它时g,它还没有被声明,所以我得到一个“未绑定变量”错误。我如何在 SML/NJ 中对这个函数进行原型设计(或任何等效词汇)?
f
g
使用and:
and
fun f x = ... and g x = ...
更多信息在这里。
相互递归。在两个函数之间使用and而不是。fun
fun