/* Program CircleTest.java
 * This program is the entry point of execution. It creates an object of
 * Class Circle and calls its methods.
 * It demonstrates how to use programmer-defined classes.
 */

// Class declaration
public class CircleTest{

    // Main method
    public static void main (String [] args){

        // An instance of the class Circle is created and stored
        // in the object myCircle.
        Circle myCircle = new Circle();

        // This statement calls the setRadius method of the class Circle.
        myCircle.setRadius();

        // This statement calls the computeArea method of the class Circle.
        myCircle.computeArea();

    } // end of main

} //end class CircleTest

