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 trialcristacooper
2,571 PointsNot sure what this challenge is looking for exactly
I keep trying various things for this challenge, and I have tried a few things in a repl.it which works, but I can't get this to pass. I assign two basic variables and then have a line that puts them to the screen. Have I misunderstood?
2 Answers
Amrit Pandey
17,595 Pointslanguage = "Ruby"
description = "awesome"
puts(language, description)
cristacooper
2,571 PointsThanks Amrit :)
Amrit Pandey
17,595 Pointsno problem!
cristacooper
2,571 Pointscristacooper
2,571 Pointsnvm, it was looking for the last line to be done with a comma . ( puts language, description) . Done! :D