- 
                Notifications
    
You must be signed in to change notification settings  - Fork 90
 
Base operators
        CodingUnit edited this page Dec 21, 2011 
        ·
        2 revisions
      
    [<< Back to Reference Manual.](Reference Manual)
- 
“-” — negation
 - 
“+” — plus
 - 
“!” — not
 - 
“~” — bitwise XOR. The ~ operator performs a bitwise complement operation on its operand, which has the effect of reversing each bit.
 
- 
“=” — assignment
 - 
“<” — less
 - 
“>” — greet
 - 
“==” — equals or reference equals
 - 
“!=” — not equals or reference not equals
 - 
“>=” — greet or equals
 - 
“<=” — less or equals
 - 
“+” — sum or string concatenation
 - 
“-” — minus
 - 
“/” — division
 - 
“*” — multiplication
 - 
“&” — bitwise AND.
 - 
“\” — bitwise OR.
 
All other operators are introduced by macros.