7.6

Table Of Contents
if(not(&x=5)) %Same as if(&x<>5)
show('This is NOT the 5th line') %Show some text
elseif()
show('This IS the 5th line') %Show alternate
endif()
endfor()
Or (Boolean operator function)
Returns true if either or both specified expressions are true, false otherwise.
Syntax
or( expression1, expression2 ) Boolean value
expression1 or expression2 Boolean value
Arguments
expression1, expression2
Boolean values.
Code Sample Examples
These examples illustrate the possible values for OR.
Example 1
or(true, false) %Returns true
Example 2
or(false, true) %Returns true
Example 3
or(false, false) %Returns false
©2010 Objectif Lune Inc - 557 -