The basic common operations:
|
+
|
Add numeric variables. (see concatenation in table two) |
|
-
|
Subtract numeric variables |
|
*
|
Multiply numeric variables |
|
/
|
Divide numeric variables |
|
>
|
Compare numeric variables - op1 greater than op2 |
|
<
|
Compare numeric variables - op1 less than op2 |
|
==
|
(double = sign) Compare for equal values for primitive vars
or for the same object otherwise. |
Note that NetRexx allows "fuzzy" logic comparisons as well as precise
comparisons - for example, the strings " FUZZY " and
"fuZZy " are equal when
compared via the "=" operator in NetRexx.