| List of expression elements / Comparison operators | |
The IS NULL operator checks for NULL values.
expr IS NULL
The IS NULL operator can be used to test whether the left-hand expression is NULL.
This operator applies to most data types, except complex types like BYTE and TEXT.
MAIN
  DEFINE n INTEGER
  LET n = NULL
  IF n IS NULL THEN
     DISPLAY "The variable is NULL."
  END IF
END MAIN