|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| ?(Condition, ifTrue, ifFalse) |
Parameters
| CONDITION | Condition | Condition to be evaluated. For more information: MioScript: Conditions
| | ANY | ifTrue | Value to return if the result of the condition is true.
| | ANY | ifFalse | Value to return if the result of the condition is not true. |
Return value
No value is returned.
Description
MioScript Sample Code
&var = ?(&x = &y, "x is equal to y", "x is not egual to y") |
|
|
|