7.3.6.2 Relational Operators

> greater than
< smaller than
= equal
! not equal

The relational operators are the only one that work on both, numerical and alphanumerically data types, as illustrated by the following example:

LET value = 5

LET my_name = "Author"

LET numcmp = (3.14<Value)

LET strcmp = ("Author"=my_name)