Tuesday, August 23, 2005

Hello World!

Let's start where all programmers start when trying to pick up a new language. Hello World! Java makes this easy:


class HelloWorld {
  public static void main(String[] args) {
    System.out.println("Hello Joe!");
  }
}


Very easy!

0 Comments:

Post a Comment

<< Home