Many details for defining an operator are similar to those of defining a function. In additionn, all operators must be
defined with a precedence level. You may use the Precedence function to obtain precedence levels of existing operators, and select a precedence level in comparison to those operators. By default operators are grouped left to right. But you
may also set it to right to left. This means that when adjacent operators have the same precedence level, the operands on
the right will be evaluated first.
DefineOperator("...") is the same as: Define("Operator: ...")
More later+++