Today we learned about "tying the knot" in SML where you have something like this
val tempFunc = ref (fn k:int => true);
fun even x = if x = 0 then true else !tempFunc(x-1);
fun odd x = if x = 0 then false else even(x-1);
tempFunc := odd;
and i'm working with ocaml which is ridiculously similar, but i'm just having trouble kind of doing the same thing. The thing I found that is the closest is
let tempFunc {contents =x}=x;;
but i don't really understand that, and how i could tie that tempFunc to another function. Any help is appreciated!