Documentation says early returns are not supported. What this means? I think early return could be doable: ```csharp if(x){ /* some return */ return f; } var c = 3; // ... ``` with: ```fsharp if x then (* some return *) f else let c = 3 // ... ```
Documentation says early returns are not supported.
What this means?
I think early return could be doable:
with: