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 trialAde Aulya
174 Pointsillegal start of expression public class Name{ ^ 1 error
it's bummer. i have written those syntax similar with the training one before. what is it wrong ?
// I have setup a java.io.Console object for you named console
public class Name{
public static void main (String[] args) {
Console console = System.console ();
//this is introduction program!
String myFirstName = "Abott";
//this is camel casing
console.printf("Hello, this is Abott\n", myFirstName);
console.printf("Abott is learning Java program\n", myFirstName);
}
}
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe challenge is not looking for class or methods. The two key statements of yours will get through Task 1 (provided you name the variable firstName
and not myFirstName
:
String firstName = "Abott";
//this is camel casing
console.printf("Hello, this is Abott\n", firstName);