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

Jorge Contreras
Jorge Contreras
1,684 Points

I am stuck with the first challenge with java, it will say illegal start

import ;

public class Introductions {

public static void main(String[] args) {
    Console console = System.console();

    String firstName = "jorge";
    console.printf("Hello, my name is %s\n", firstName);

} }

Name.java
// I have setup a java.io.Console object for you named consoleimport java.io.Console;
 import ; 

public class Introductions {

    public static void main(String[] args) {
        Console console = System.console();
        // Welcome to the Introductions program!  Your code goes below here
        String firstName = "jorge";
        console.printf("Hello, my name is %s\n", firstName);
        console.printf("%s is learning how to write Java\n", firstName);
  }
}

1 Answer

sarvan
sarvan
2,152 Points

Details such as import, class definition & etc. has already been set up for the exercise, so you're probably getting an error due to duplication. Try only defining a String variable initialised with your name, and then print it out using the Console object; i.e.:

// I have setup a java.io.Console object for you named console
String firstName = "jorge";
console.printf("%s can code in Java!", firstName);