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

Sushma N
Sushma N
1,047 Points

whats wrong with the code?

can I know the error in the code

Name.java
// I have setup a java.io.Console object for you named console
class Name{
  public static void main(String[] args)
  {
    Console console = System.console();
    String fristName="sushma";
    console.printf("hello");
  }
}

1 Answer

You have tried to include too much to pass the challenge. For this challenge, you do not have to set up a class and define a main method. Just code what each step asks, and it should work better for you. Try again, paying attention to what each step of the challenge asks, and code only that much.