AMT Help Files
homeLION Language ReferenceCommandsNOT

NOT

Syntax

NOT <Condition>

Description

Inverts a boolean condition.

Diagram

Returned value type

Boolean

Parameters

Parameter Description
<Condition> Expression evaluating to true or false.

Examples

error := not True
if not numeric (sd-entry)
  exit
endif

s-month := 1

loop while not s-month > 12
  proc-month ()
  s-month += 1
endloop

Return to

Commands

Contents

 Go to top