1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/CASE_IS.txt

22 lines
560 B
Plaintext

[[CASE IS]] can be used in a [[SELECT CASE]] routine where you need to use relational conditional expressions.
{{PageSyntax}}
: [[CASE IS]] '''{=|<|>|<=|>=|<>|[[NOT]]} {{Parameter|expression}}'''
{{PageDescription}}
* [[CASE IS]] > 100 uses the greater than expression.
* [[CASE IS]] <= 100 uses the less than or equal to expression.
* [[CASE IS]] <> 100 uses the not equal to expression(same as {{KW|NOT}} 100).
{{Template:RelationalTable}}
{{PageSeeAlso}}
* [[CASE]], [[CASE ELSE]]
* [[SELECT CASE]]
{{PageNavigation}}