In C#, we have the conditional operator:
[condition] ? [value if true] : [value if false]
But I can't seem to find this in F#. Does it exist?
In C#, we have the conditional operator:
[condition] ? [value if true] : [value if false]
But I can't seem to find this in F#. Does it exist?
As found here the answer is
The website I linked offers a bunch of C# vs F# examples.