Some Real Java Code


The following code is the Java equivalent of the old C "first program":
public class HelloWorld
{
   public static void main( String args[] )
   {
      System.out.println( "Hello World!" );
   }
}
When this is compiled (using "javac") and run using the Java interpreter, the following output is produced:
Hello World!