|
|
|
|
Functions
MioScript Reference
|
|
Syntax
Parameters
Return value
No value is returned.
Description
If the result of the condition is true, the code between if and if.end or if.else (if any).
If the result of the condition is false the code between if.else and if.end is interpreted (if any).
See also: if.else, if.end
More information: MioScript: Conditions |
MioScript Sample Code
if(&firstVar = &secondVar)
...
if.else
...
if.end |
|
|
|