class P03_TwoThings { /** * Just print them * @param t1 - 1st thing to be done * @param t2 - 2nd thing to be done */ static void doTwoThings(String t1, String t2) { System.out.println(t1); System.out.println(t2); } public static void main(String[] args) { doTwoThings("ok", "good"); } }