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 trialEugenio Bruce
12,352 PointsI can't pass this chalenge: "Use the concatenation operator + to append “ rocks!” to the end of the contents of the firs
attached is my code, i keep receiving bummer that my code is faulty. plz help.
string firstName = Console.ReadLine();
Console.WriteLine(firstName + “ rocks!” );
2 Answers
Ken Alger
Treehouse TeacherEugenio;
It looks like you are using the wrong character for your quotes around rocks! Did you just cut and paste from the task instructions?
Happy coding,
Ken
Eugenio Bruce
12,352 PointsThanx Guys,
Can't believe this was holding me back. Many thanx.
Kevin Jennings
4,384 PointsKevin Jennings
4,384 PointsThose quotes do not look like the standard double quote. I copied your code into Visual Studio, and it immediately complained about those quotes. I replaced them with a standard double quote, and it worked fine.