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 trialUnsubscribed User
7,386 PointsSet a variable called "too_fast" equal to "true" if the car_speed is faster than the speed_limit and "false" if the car_
Could someone please start writing the questions to these challenges in correct English? This would be one of the questions that needs to be corrected: Set a variable called "too_fast" equal to "true" if the car_speed is faster than the speed_limit and "false" if the car_speed is less than the speed_limit.
Most of the time I run into an issue - it's not that I don't understand the lesson. It's that I don't understand the question. I seriously challenge the instructors to start writing the test (challenge) questions in comprehensible English.
1 Answer
Brandon Hartman
8,032 PointsThe questions usually gets me as well. I'm not sure if you got the answer to this question yet but hopefully this helps!
if car_speed > speed_limit too_fast = true
else too_fast = false
end