import javabook.*;

/*
 * Introduction to OOP with Java 2nd Edition, McGraw-Hill
 *	
 *  The main program for testing the passing of arrays
 *  as parameters. The actual test is done by the
 *  TestArrayParameter class.
 *
 *  
 * @author Dr. Caffeine
 *
 */
class TestArrayParameterMain
{
    
    public static void main (String[] args)
    {
        TestArrayParameter tester;
        tester = new TestArrayParameter( );
        
        tester.testArrayPassing( );

   }
    
}