Source of Info.java


  1: //Info.java
  2: 
  3: public class Info
  4: {
  5:     public void display()
  6:     {
  7:         System.out.println();
  8:         System.out.println("This is some information.");
  9:         System.out.println("This is the second and last line.");
 10:         System.out.println();
 11:     }
 12: }