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

what is the wrong in this!!!

help please

Name.java
// 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);
}
    } 

help!!

2 Answers

Presley Cobb
Presley Cobb
971 Points

If this is a code challenge you don't need to wrap everything the main method. You just need to variable declaration and the assignment.

You'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.