+
|
Addition
|
–
|
Subtraction
|
/
|
Division
|
*
|
Multiplication
|
^
|
Exponentiation
|
()
|
Parentheses for grouping for example, d0 = (d1–d2)*d3
|
=
|
Equal to
|
==
|
Equal to
|
>
|
Greater than
|
> =
|
Greater than or equal to
|
!=, <>,~=
|
Not equal to
|
<
|
Less than
|
<=
|
Less than or equal to
|
|
|
Or
|
&
|
And
|
~, !
|
Not
|
|
The "equal to" assignment operator is different from the "equal to" comparison operator.
|