/**
 *
 * Introduction to OOP with Java 2nd Edition, McGraw-Hill
 *   
 *  Chapter 4
 *
 * <p>
 * The LoanCalculator main program to compute the monthly and total
 * payments for a given loan amount, annual interest rate, and number
 * of years. This class uses a LoanCalculator object for the actual 
 * task of loan payment computation. 
 *
 * @author Dr. Caffeine
 *
 */
class LoanCalculatorMain
{
    public static void main (String[] args)
    {
        LoanCalculator loanCalculator;
        loanCalculator = new LoanCalculator( );
        loanCalculator.start();
    }
}