mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 23:23:55 +00:00
Adds combined comparison operator to Ruby
This commit is contained in:
parent
f0a4c88acf
commit
ec601c168a
@ -77,6 +77,11 @@ false.class #=> FalseClass
|
||||
2 <= 2 #=> true
|
||||
2 >= 2 #=> true
|
||||
|
||||
# Combined comparison operator
|
||||
1 <=> 10 #=> -1
|
||||
10 <=> 1 #=> 1
|
||||
1 <=> 1 #=> 0
|
||||
|
||||
# Logical operators
|
||||
true && false #=> false
|
||||
true || false #=> true
|
||||
|
Loading…
Reference in New Issue
Block a user