Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBrenda Bouchard
5,028 PointsRuby Operators Challenge 1 Task 1
I am not sure what to put.
"a" < "b"
2 Answers
Geoff Parsons
11,679 PointsThe challenge is looking for you to compare two variables named a
and b
, not two strings containing the respective letters. The quotations in the question may have not made that obvious. All you need is the following:
a > b
Amanda Wagner
6,070 PointsIt's asking you to check if a is greater than b.
a > b = true?