/*
 * Created on Aug 6, 2003
 */
package hello;

/**
 * The famous Hello-World example, used to demonstrate some aspects.
 * 
 * @author oliver
 * @since  Aug 6, 2004
 */
public class World {

    /**
     * The entry point which prints the famous "hello world" message.
     * @param args the command line parameter
     */
    public static void main(String[] args) {
        System.out.println("Hello world!");
    }

}
