1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/internal/help/OR_(boolean).txt
2017-10-10 11:55:21 -03:00

37 lines
1 KiB
Plaintext

The '''OR''' coditional operator adds an alternative in a [[IF...THEN]] or [[Boolean]] statement.
{{PageSyntax}}
:: IF a = 1 '''OR''' a = 2 THEN a = 0
* OR adds an alternative to another conditional evaluation. IF True then the statement evaluation is True.
* Parenthesis may be used to clarify the order of comparisons in an evaluation.
* [[AND]] and '''OR''' cannot be used to combine command line operations.
* '''A double OR syntax error may be ignored and create a QB64 compiler error!'''
* Not to be confused with the [[AND]] and [[OR]] numerical operations.
{{Template:RelationalTable}}
''Example:''
{{CodeStart}}
a% = 100
b% = 50
IF (a% > b% AND a% < 100) OR b% = 50 THEN PRINT "True"
{{CodeEnd}}
{{OutputStart}}
True
{{OutputEnd}}
: ''Explanation:'' The first evaluation was False, but the OR evaluation made the statement true and the code was executed.
''See also:''
* [[AND]], [[OR]] {{text|(logical operators)}}
* [[AND (boolean)]], [[XOR (boolean)]]
* [[IF...THEN]]
{{PageNavigation}}