Last updated
Last updated
For various conditional operations, a variety of expressions can be utilized. These expressions can be nested within one another, allowing for complex logical structures. Additionally, strings can be concatenated within these expressions.
Expressions are generally used with TEST
- or IF
-statements.
In the example above, we've used an IF
-statement. More details on that in the next chapter.
()
Parentheses (defining scopes)
[]
Brackets (defining lists)
NOT
Negation
!!
Concatenation
EQ
Equals
NE
Not equals
LT
Less than
LE
Less equals
GT
Greater than
GE
Greater equals
IN
Contains (for lists)
AND
Conjunction
OR
Disjunction