Merge pull request #9 from jssevestre/master

Inequality, compare and chained
This commit is contained in:
Adam Bard 2013-06-28 01:32:59 -07:00
commit 9b217bc769

View File

@ -49,11 +49,24 @@ False
not True #=> False
not False #=> True
# Equality is ==
1 == 1 #=> True
2 == 1 #=> False
# Inequality is !=
1 != 1 #=> False
2 != 1 #=> True
# More comparisons
1 < 10 #=> True
1 > 10 #=> False
2 <= 2 #=> True
2 >= 2 #=> True
# Comparisons can be chained !
1 < 2 < 3 #=> True
2 < 3 < 2 #=> False
# Strings are created with " or '
"This is a string."
'This is also a string.'