/* * Created on Aug 22, 2006 */ package samplecode; // ignore this /** * This is the classic simple program to get something * working. */ public class HelloWorld { /** * Prints "Hello World" to System.out * @param args these are required by the system but ignored in this case. */ public static void main(String [] args) { System.out.println("Hello World"); } }