/* 
 * print "hello world"
 * @author	Biagioni, Edoardo
 * @assignment	lecture 2
 * @date	January 16, 2008
 * @bugs	none
 */

public class HelloWorld {
    /* invoked when the program is started */
    public static void main (String [] arguments) {
	System.out.println ("hello world!");
    }
}