hi, can any body tell me how to achieve following if expression in erlang
if(a==b) {
expression1
}else {
expression2
)
thanx in adavnce.
|
|
hi, can any body tell me how to achieve following if expression in erlang
thanx in adavnce.
|
|||
|
|
|
|
Another option:
|
||
|
|
|
|
Pattern matching is one of Erlangs many strengths and it can often be used instead of if statements. It is often more readable to pattern match on function arguments or use a case expression (which also is pattern matching). Suppose you have a function
It is quite amazing how much you can achieve with this kind of simple pattern matching. With guard clauses you can express more complicated patterns, e.g.,
Another possibility is to use a
(In this case You can read more about Erlang expressions here. |
||||
|
|
|
or
|
||
|
|
|
|
There is no real else in Erlang, you just match with true. More information at the Erlang documentation. You have to pay close attention to the ';' terminator :
It's not a copy-paste friendly language. |
||
|