1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00
QB64-PE/internal/help/OR_(boolean)_11_(0000000).txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

41 lines
1 KiB
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:15:20}}
The '''OR''' conditional operator evaluates an expression to true (-1) if any of the arguments is also true.
{{PageSyntax}}
: [[IF]] {{Parameter|expression1}} '''OR''' {{Parameter|expression2}} THEN {code}
{{PageDescription}}
* OR adds an alternative to another conditional evaluation. If either element in the evaluation is true then the evaluation is true.
* Parenthesis may be used to clarify the order of comparisons in an evaluation.
* Not to be confused with the [[AND]] and [[OR]] numerical operations.
{{Template:RelationalTable}}
{{PageExamples}}
''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.
{{PageSeeAlso}}
* [[AND]], [[OR]] {{text|(logical operators)}}
* [[AND (boolean)]], [[XOR (boolean)]]
* [[IF...THEN]]
{{PageNavigation}}