Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Ternary conditional operator
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
===F#=== In [[F Sharp (programming language)|F#]] the built-in syntax for if-then-else is already an expression that always must return a value. <syntaxhighlight lang="fsharp"> let num = if x = 10 then 42 else 24 </syntaxhighlight> F# has a special case where you can omit the else branch if the return value is of type unit. This way you can do side-effects, without using an else branch. <syntaxhighlight lang="fsharp"> if x = 10 then printfn "It is 10" </syntaxhighlight> But even in this case, the if expression would return unit. You don't need to write the else branch, because the compiler will assume the unit type on else.
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)