import java.util.ArrayList;
/**
 * Do this AFTER the exercises.
 * 
 * This programme simulates a way of internet banking.
 * When it runs, you will need to ask the user to open a NEW account (You will need to ask them a lot of information!)
 * 
 * Then ask them to make a deposit/withdrawal/loan payment.
 * Perform the required action and print a summary of their savings and loan balances. Continue asking them what they want to do until they exit. 
 * Then print a summary of their loans/balances.
 * 
 * Extension: 1)Ensure it works as intended, that is if a user has a saving of $10, they can NOT withdrawl $500!
 *            2)Allow an option for the loan amount to be paid from the savings for an specified amount
 *       
 *            
 * Challenges:#1 This programme is useless since it only work for 1 person. Adapt the programme to manage more than 1 account. Searching for the correct account will be hard!
 *            #2 This programme is STILL uselss since it doesn't save the data anywhere. Change the programme so the account details are saved.
 */
public class BankAccounts{
    Account user;

    /**
     * Run the BankAccounts programme
     * You may need more functions to be defined!
     */
    public void run(){
        //YOUR CODE HERE
        
    }
}
