Skip to content

Instantly share code, notes, and snippets.

@rozap
Last active February 9, 2018 00:57
Show Gist options
  • Save rozap/043a76af28411c6abe7d305f3a3bf86b to your computer and use it in GitHub Desktop.
Save rozap/043a76af28411c6abe7d305f3a3bf86b to your computer and use it in GitHub Desktop.
-- math
2 + 2
2 - 2
2 / 2
2 * 2
4 % 1
-- boolean
not true
true or false
true and true
-- comparison
1 = 1
1 == 1
1 != 2
1 < 2
1 > 2
1 <= 2
1 >= 2
-- others
1.5 BETWEEN 1 and 2
1 IN (0, 1, 2, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment