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

aaron bartok
PLUS
aaron bartok
Courses Plus Student 183 Points

i dont get what this challenge is asking for. i am writing what it wanta

i have been on this step for a day now, i dont get what the step is looking for, my code should come out as my name.

Name.java
// I have setup a java.io.Console object for you named console
String firstName = "<YOUR NAME>";
console.printf("%s", firstName);

2 Answers

Hi Aaron,

Can you try this please?

String firstName = "Aaron";
console.printf("%s can code in Java!", firstName);

-Rich

aaron bartok
PLUS
aaron bartok
Courses Plus Student 183 Points

After setting a looking at it for a bit i seen that that code wanted "can code in Java".... I have made it past that part now :) Thanks for you help Bro

No problem :)

-Rich