/* * Created on 28-Sep-2004 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ /** * @author websterm * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class HelloWorld { public static void println () { System.out.println("Hello World!"); } public static void main(String[] args) { println(); // System.getProperty("foo"); } }