/* * Created on Mar 5, 2006 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ /** * @author Jianguo Lu * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class Hello { void greeting(){ System.out.println("Hello!"); } public static void main( String[] args ){ new Hello().greeting(); } }