IS

From QB64 Wiki

Revision as of 00:25, 31 December 2010 by Clippy (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

CASE IS can be used in a SELECT CASE routine where you need to use relative comparison expressions.


Syntax:

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:



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page