1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/IMP.txt

25 lines
733 B
Plaintext
Raw Normal View History

2017-10-10 14:55:21 +00:00
The [[IMP]] logical operator converts the result of two comparative values and returns a bit result.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: {{Parameter|result}} = {{Parameter|firstValue}} [[IMP]] {{Parameter|secondValue}}
{{PageDescription}}
2021-01-04 18:45:32 +00:00
* Returns a different result from [[AND]], [[OR]] or [[XOR]] - see truth table below.
2017-10-10 14:55:21 +00:00
* Evaluates if {{Parameter|firstValue}} '''''imp'''lies'' {{Parameter|secondValue}}.
**If {{Parameter|firstValue}} is true then {{Parameter|secondValue}} must also be true.
**So if {{Parameter|firstValue}} is true, and {{Parameter|secondValue}} false, then the condition is false, otherwise it is true (see table below).
{{Template:LogicalTruthTable}}
{{PageSeeAlso}}
* [[Binary]]
* [[Boolean]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<