Skip to main content

Imp Operator

Used to perform a logical implication on two expressions.

Synopsis

result = expression1 Imp expression2

Arguments

The Imp operator syntax has these parts:

result Any numeric variable.
expression1 Any expression.
expression2 Any expression.

Description

The following table illustrates how result is determined:

If expression1 is If expression2 is The result is
True True True
True False False
False True True
False False True

See Also

FeedbackOpens in a new tab