LOTUSSCRIPT LANGUAGE
Syntax
expr1 Imp expr2
Elements
expr1, expr2
The following table explains how LotusScript determines the result of the Imp operation.
Dim youCanSee As Boolean, lightIsOn As Boolean
' You don't need the light to see.
youCanSee = TRUE
lightIsOn = FALSE
Print youCanSee Imp lightIsOn ' Prints False
' You need the light to see.
youCanSee = FALSE
Print youCanSee Imp lightIsOn ' Prints True
See Also