Guest User

Untitled

a guest
Feb 21st, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. -- math
  2. 2 + 2
  3. 2 - 2
  4. 2 / 2
  5. 2 * 2
  6. 4 % 1
  7.  
  8. -- boolean
  9. not true
  10. true or false
  11. true and true
  12.  
  13. -- comparison
  14. 1 = 1
  15. 1 == 1
  16. 1 != 2
  17. 1 < 2
  18. 1 > 2
  19. 1 <= 2
  20. 1 >= 2
  21.  
  22. -- others
  23. 1.5 BETWEEN 1 and 2
  24. 1 IN (0, 1, 2, 3)
Add Comment
Please, Sign In to add comment