Relational Operators

The following operators serve to compare some subexpressions when you want to obtain a boolean value result. Each of the mentioned signs can be used. These signs can be used more times in one expression. In such a case you can express priority of comparisons by parentheses.

[Important]Important

If you choose the .operator. syntax, operator must be surrounded by white spaces. Example syntax for the eq operator:

CodeWorking?
5 .eq. 3
no
5 == 3
no
5 eq 3
no
5.eq(3)
no