mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-26 20:34:32 +03:00
Merge pull request #1909 from farisj/ruby-adds-combined-comparison
Adds combined comparison operator to Ruby
This commit is contained in:
commit
c297cfa4f0
@ -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