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 am i doing wrong?

help

Name.java
// I have setup a java.io.Console object for you named console
public class Name
{
  public static void main(Strings [] args)
  {
    Console console = System.console();
    String firstname = "Joshua"

    console.printf("Hello my name is %s",firtsname)
  }
}

1 Answer

String firstname = "Joshua"

    console.printf("Hello my name is %s",firtsname)

You need a semicolon at the end of each statement and to also correct the typo in 'firstname'

Also when I studied java we always did public static void main(String[] args) at the beginning where you have Strings [] args

I don't know if this last thing makes a difference but try to correct the first things and see if that fixes it.

Cheers!