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 trialahmed aboukoura
1,345 Pointsruby if statement
i couldn't solve this challenge :(
car_speed = 65
speed_limit = 60
too_fast > 65
if car_speed > speed_limit
puts "true"
end
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! It seems like you were doing pretty well. But it wants the variable too_fast
to be set to true if the car is going over the speed limit. And we don't need to print anything out. Here's how I did it:
car_speed = 65
speed_limit = 60
if car_speed > speed_limit
too_fast = true
end
This simply says that if the car speed is over the speed limit, too_fast will be equal to true. Hope this makes sense!