class A { A() {} void f () { System.out.print ("Hello world!\n"); } } public class simple { public static void main(String _ []) { (new A()).f(); (new A()).f(); } }