I would like to allow the mix of let-rec and let construction as in OCaml, currently we can either do only _let rec ... and ... an_d. or only let .. let ... let
This was a choice in the beginning to emphysis the language's feature that every function are mutually recursive
allowing the mix of let rec and let would mean more intuitive program, but with the misleading thought that it means something semantically.
I would like to allow the mix of let-rec and let construction as in OCaml, currently we can either do only _let rec ... and ... an_d. or only let .. let ... let
This was a choice in the beginning to emphysis the language's feature that every function are mutually recursive
allowing the mix of let rec and let would mean more intuitive program, but with the misleading thought that it means something semantically.