910111213141516171819
Predicate predicate = new Predicate() { public boolean test() { return true; } }; Procedure procedure = new Procedure() { public void run() { System.out.println("test"); } }; new WhileDo(predicate, procedure).run();