1: //English.java 2: //Two methods to display two different greetings in English. 4: //package misc.greetings; 6: public class English 7: { 8: public static void sayHello() 9: { 10: System.out.println("\nHello there!\n"); 11: } 13: public static void sayHi() 14: { 15: System.out.println("\nHi there!\n"); 16: } 17: }