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 trialGlen Tyree
6,997 PointsWhy is this code not working?
Why is this code not working?
// I have setup a java.io.Console object for you named console
public static void main(String[] args)
{
Console console = System.console();
string firstName = "Glen";
console.printf("%s\n", firstName);
}
1 Answer
Connor Walker
17,985 PointsFor this challenge you do not need to create the main method, or create the console object as this has been done for you.
When declaring the data type of a variable in Java the first letter needs to be capitalised or you'll get the compiler error. Also it wants you to print your name along with the string "can codee in Java!", overall it should look like this:
String firstName = "Glen";
console.printf("%s\n", firstName + " can code in Java!");
Glen Tyree
6,997 PointsGlen Tyree
6,997 PointsThank you.