Sunday, October 19, 2008

Hello World: Java

I'm on Ubuntu 8.04 Hardy, running Eclipse and Sun java and javac.

Open up your favorite word processor, and type in:


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


Make sure that all braces and semicolons are lined up, otherwise your code won't compile correctly.

The