Skip to content

Commit

Permalink
Update boolean_practice.md
Browse files Browse the repository at this point in the history
  • Loading branch information
loganjacob76 authored Jan 3, 2021
1 parent f36e08f commit 09741ff
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions day_2/exercises/boolean_practice.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@

## Study Drills
1. There are a lot of operators in Ruby similar to != and ==. Try to find as many "equality operators" as you can. They should be like < or <=. Write out the names of each of these equality operators. For example, I call != "not equal."
- == equal
- != not equal
- > greater than
- >= greater than or equal to
- < less than
- <= less than or equal to
- <=> combined comparison operator (if larger value is on left returns 1, on right -1, if equal 0)
- `== equal`
- `!= not equal`
- `> greater than`
- `>= greater than or equal to`
- `< less than`
- `<= less than or equal to`
- `<=> combined comparison operator (if larger value is on left returns 1, on right -1, if equal 0)`

0 comments on commit 09741ff

Please sign in to comment.