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 trial

Ruby Ruby Basics Ruby Syntax Variables

cristacooper
cristacooper
2,571 Points

Not 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?

cristacooper
cristacooper
2,571 Points

nvm, it was looking for the last line to be done with a comma . ( puts language, description) . Done! :D

2 Answers

Amrit Pandey
Amrit Pandey
17,595 Points
language = "Ruby"
description = "awesome"

puts(language, description)