Skip to content

Instantly share code, notes, and snippets.

@antonkartashov
Last active August 29, 2015 14:26
Show Gist options
  • Save antonkartashov/ffa2631e5603ae4470a8 to your computer and use it in GitHub Desktop.
Save antonkartashov/ffa2631e5603ae4470a8 to your computer and use it in GitHub Desktop.
# Больше и меньше
a > b
a < b
# Равно и неравно
a is b
a isnt b
# Рассмотрим пример:
a = true
b = true
if a is b
print "Good"
else
print "Bad"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment