Source of Demo.java


  1: /**
  2:  @author Frank M. Carrano, Timothy M. Henry
  3:  @version 5.0
  4: */
  5: public class Demo implements ConstantsInterface
  6: {
  7:    public static void main(String[] args)
  8:    {
  9:       System.out.println(FEET_PER_METER);
 10:       System.out.println(ConstantsInterface.MILES_PER_KILOMETER);
 11:    } // end main
 12: } // end Demo