Operators

OperatorDescriptionExample
=Set valuemyIntegerValue = 10;
==equalthisIsTrue = (‘A’ == ‘A’);
∼=not equalthisIsTrue = (‘A’ ~= ‘B’);
<smallerthisIsTrue = 2 < 3;
<=smaller or equalthisIsTrue = 2 <= 3;
>largerthisIsTrue = 3 > 2;
>=larger or equalthisIsTrue = 3 >= 2;
notlogical NOTthisIsTrue = not false;
andlogical ANDthisIsTrue = true and (not false);
orlogical ORthisIsTrue = true or false;
..Add textNewText = Variable1 .. ‘ is added to ‘ .. Variable 2;