/* AccountDemo.java provides a simple test bed for the AccountKind package. * * Started by: Charles Hoot, for Hands On Java. * Date: July, 2000       * Finished by: * Purpose: * *****************************************************************/import ann.easyio.*;import AccountKinds.*;class AccountDemo extends Object{	static Screen theScreen = new Screen();	static Keyboard theKeyboard = new Keyboard();	public static void main(String args[])	{		theScreen.println("\nWelcome to the Account package demonstrator!\n");		theScreen.print("\nCreating a Regular Account: ");		RegularAccount anAccount;		anAccount = new RegularAccount("The green hornet", "1202", 50.0);						theScreen.println("\nAccount status is: " + anAccount);				// Add test lines for Experiments here	}} // end of class
