Source of English.java


  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: }