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

Java Java Basics Getting Started with Java Strings, Variables, and Formatting

Jacob Luallen
Jacob Luallen
1,947 Points

Intro to Java first lesson

I don't understand what code it is looking for. I entered in "string firstName = "myname";" but it just tells me I have a compiling error. I tried to write in more code but I just don't understand what the challenge wants.

Name.java
// I have setup a java.io.Console object for you named console
string firstName = "Jacob";

1 Answer

rydavim
rydavim
18,814 Points

When you're initializing the string, "String" needs to be capitalized.

String firstName = "Jacob";
Jacob Luallen
Jacob Luallen
1,947 Points

Yep, thank you. In the future I will look at the code longer. I am quickly learning 9/10 problems are minor typos.