
/*
 * HelloWorld - prints the hello world message to a terminal
 * Eric McCreath 2010
 */


public class HelloWorld {

	
	public static void main(String[] args) {
		
		System.out.print("Hello World");
	}

}

