Doesn't support the mutually recursive function syntax as described here: https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/functions/recursive-functions-the-rec-keyword ``` // Mutually recursive functions: let rec function1-nameparameter-list = function1-body and function2-nameparameter-list = function2-body ... ``` Example: ```fsharp let rec Even x = if x = 0 then true else Odd (x-1) and Odd x = if x = 0 then false else Even (x-1) ``` ## Screenshots: `Odd` is not recognized as a function:   
Doesn't support the mutually recursive function syntax as described here: https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/functions/recursive-functions-the-rec-keyword
Example:
Screenshots:
Oddis not recognized as a function: