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 trialahmad baddah
Courses Plus Student 153 Pointswhat is the wrong in this!!!
help please
// I have setup a java.io.Console object for you named console
public static void main(String[] args){
String firstName;
firstName = "ahmad";
System.out.println(firstName);
}
}
2 Answers
Presley Cobb
971 PointsIf this is a code challenge you don't need to wrap everything the main method. You just need to variable declaration and the assignment.
Derek Markman
16,291 PointsYou're missing the class declaration, you have the closing bracket for the class declaration but not the class itself. Since your class is called Name.java your code should look like this:
Name.java
// I have setup a java.io.Console object for you named console
public class Name { //this is the part you were missing
public static void main(String[] args) {
String firstName;
firstName = "ahmad";
System.out.println(firstName);
}
}
I'm not sure what the challenge is asking you to do, but from what you posted, that is what is missing, everything else is good.
ahmad baddah
Courses Plus Student 153 Pointsahmad baddah
Courses Plus Student 153 Pointshelp!!