Advertisement
tomdodd4598

Untitled

Sep 3rd, 2021
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. logical_and = '&&';
  2. logical_or = '||';
  3. logical_xor = '^^';
  4.  
  5. equal_to = '==';
  6. not_equal_to = '!=';
  7.  
  8. less_than = '<';
  9. less_or_equal = '<=';
  10. more_than = '>';
  11. more_or_equal = '>=';
  12.  
  13. plus = '+';
  14. and = '&';
  15. or = '|';
  16. xor = '^';
  17. minus = '-';
  18.  
  19. arithmetic_left_shift = '<<';
  20. arithmetic_right_shift = '>>';
  21. logical_right_shift = '>>>';
  22. circular_left_shift = '<</';
  23. circular_right_shift = '>>/';
  24.  
  25. multiply = '*';
  26. divide = '/';
  27. remainder = '%';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement