▲ | arwhatever 2 days ago | |||||||
if I may elaborate on "everything is an expression," F# allows you to do things like (with apologies for being a tad rusty with the syntax)
or
and will ensure that both/all code branches return a compatible type for the `let` binding.Whereas in C# you have to do like
And C# will let you know if you omit the `else` on accident ...Except that most C# developers do
to get the red squiggly to go away while they type the rest of the code, unknowingly subverting the compiler's safety check.This doesn't seem like a big deal given these examples. But it becomes a much bigger deal when the if/else grows super large, becomes nested, etc. | ||||||||
▲ | DeathArrow 2 days ago | parent [-] | |||||||
Also C#: bar = foo switch {
| ||||||||
|