Advertising banner:

History
 
 NOT
Home • Help • A0 • Customization Tools • FCAS • Language Reference • NOT
 
NOT (math)
Purpose
Evaluates whether an expression is FALSE.
Syntax
NOT Expression
Example
Sub Main()
        Dim e1 as Integer
        e1 = TRUE
        If NOT e Then
                Print "Expression 'e' was FALSE"        
                'NOT TRUE=FALSE
        Else
                Print "Expression 'e' was TRUE"
        End If
End Sub