1  public class BankMain {
 2    public static void main(String[] args){
 3      Savings fleet = new Savings("John Doe", 100.00, 50.00);
 4      Savings fleet2 = new Savings("Tom Heart", 75.00);
 5      Checking boa = new Checking("Mary Johnson", 200.00);
 6
 7      boa.display();
 8      fleet.display();
 9      fleet2.display();
10
11    }
12  }

Generated with vim2html
Copyright © 2003-2004 by Chip Cuccio <http://norlug.org/~chipster/finger>