//File:	BankAccount2Client.java
import CSLib.*;
public class BankAccount2Client
{
	public static void main (String [] args)
	{
		OutputBox out = new OutputBox("Testing BankAccount2 Class");
		out.setSize (350, 100);

		BankAccount2 myAccount = new BankAccount2 (2000);
		out.println ("" + myAccount);
		
		myAccount.deposit(1000);
		out.println ("" + myAccount);
		
		BankAccount2 yourAccount = new BankAccount2();
		out.println ("" + yourAccount);
	}
}
