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 trialRavid Shlomian
137 Pointscan someone pleaz help me with this question? i don't know what to do with it...
pleaz read my code and tell when i went wrong...
Console.WriteLine(firstName);
Console.ReadLine();
2 Answers
Erick R
5,293 PointsYou are writing the firstName variable without being assigned and then you are reading something to the console. The challenge wants this:
//Get the First name and store in the variable firstName
var firstName = Console.ReadLine();
Console.WriteLine(firstName); //Print out the content
Console.WriteLine(firstName + " rocks!"); //Append the text
Steven Parker
231,210 PointsTask 1 only requires "ReadLine", you won't need "WriteLine" until the later tasks.
What you do for "firstName" in task 1 will be very similar to what was done for "entry" in the Receiving Input video at about 3:30.
Erick R
5,293 PointsErick R
5,293 Pointsthe var keyword means variable if you are confused by that keyword use the string keyword