History |
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
| ||