a + b
|
sums the two numbers If the debugging level is equal or greater than 2 and the operation leads to an overflow, a run time error will be reported |
a - b
|
substract |
a * b
|
multiply |
a \ b
|
integer division (the result is an integer) |
a % b
|
integer modulus (the result is the rest of the integer division) |
a ^ b
|
exponent |
a .+. b
a .-. b
a .*. b
a .^. b
|
same as the previous ones, but overflows are ignored. |
.not. a
a .and. b
a .or. b
a .xor. b
|
bit operations. |