Example #1
0
 // Test the new class:
 public static void main(String[] args) {
   Detergent x = new Detergent();
   x.dilute();
   x.apply();
   x.scrub();
   x.foam();
   print(x);
   print("Testing base class:");
   Cleanser.main(args);
 }