The `if` function will accept 3 arguments: condition, true-case, and false-case. For example: ```ruby $ calc "if( 2 > 3, 100, -100)" -100 ```
The
iffunction will accept 3 arguments: condition, true-case, and false-case.For example: