IS
From QB64 Wiki
CASE IS can be used in a SELECT CASE routine where you need to use relative comparison expressions.
- CASE IS {[>[=]]|[<[=]]|[<>]} expression
Description:
- 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 NOT 100).
See also: