| 
 
 OperatorsThe following is a list of operators which are understood by Tao:Arithmetic operators:
    +     addition
    -     subtraction
    *     multiplication
    /     division
    %     modulus
Bitwise operators:
    ~     not
    <<    shift left
    >>    shift right
    &     bitwise AND
    ^     bitwise XOR
    |     bitwise OR
Relational operators:
    ==    equal
    !=    not equal
    <     less than
    >     greater than
    <=    less than or equal to 
    >=    greater than or equal to
Assignment operators:
    += -= *= %= <<= >>= &= ^=
Logical operators:
    and or not
Note that the andoperator has higher precedence than theoroperator. This means that the expressiona and b or c and devaluates to(a and b) or (c and d).
 
    
 |