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 trialCamilo Arcadio Gonzalez
5,722 PointsDont understand what i need to do in this challenge
Answer: "Hello" page_content(params[:name])
1 Answer
Jay McGavren
Treehouse TeacherThe result of the block needs to be the string you want to respond with. So:
get "/greet/:name" do
"Hello"
end
...would respond with "Hello". But you also need the value of params[:name]
. So if you make "Hello #{params[:name]}"
the result of the block, it should pass.