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 trialCrystal Clear
1,833 PointsWhy is my code not working?
I sent my if statement, and declared a variable, but my code still isn't working. Can somebody please help me debug.
car_speed = 65
speed_limit = 60
too_fast =;
if car_speed > speed_limit
too_fast = "true";
end
1 Answer
Gianmarco Mazzoran
22,076 PointsHi,
you're close! Just need a couple of adjustement!
You need to set too_fast
as an empty variable outside the if
statement, then inside the if
return the boolean TRUE
, not the string "true".
Like this:
car_speed = 65
speed_limit = 60
too_fast = ""
if car_speed > speed_limit
too_fast = TRUE
end