1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 21:40:25 +00:00
QB64-PE/internal/help/Not_Equal_100_10000.txt
Roland Heyder 6912727753 Update help files
Help file snapshot as of 07/31/2022.
2022-07-31 23:57:56 +02:00

22 lines
580 B
Plaintext

{{QBDLDATE:07-31-2022}}
{{QBDLTIME:23:54:12}}
The '''<>''' condition symbol denotes that a value must not equal another value for the condition to be True.
''Example usage:'' IF x [[Not_Equal|<>]] 320 THEN PRINT "Not in center of screen"
* Statements will evaluate as True or -1 when two values are not equal or False or 0 when equal.
* More than one <> symbol in a numerical statement will create a [[Boolean]] evaluation of the ensuing numerical pairs.
''See also:''
* [[Equal|=]]
* [[Greater_Than|>]]
* [[Less_Than|<]]
* [[Relational Operations]]
{{PageNavigation}}