public class HelloWorld { public void println () { System.out.println("Hello World!"); } public static void main (String[] args) throws Exception { new HelloWorld().println(); } }