/*
    Program FunTime

    The program will allow you to draw a picture by
    dragging a mouse (move the mouse while holding the left mouse
    button down). To erase the picture and start over, click
    the right mouse button (command-click on the Mac).
*/

import javabook.*;

class FunTime
{
    public static void main(String[] args)
    {
        SketchPad   doodleBoard;
        doodleBoard = new SketchPad();
        doodleBoard.setVisible( true );
    }
}
