public class drawingMethodsA
{
    public static void main (String args[])
    {
	new drawingMethodsA ();
    }


    /*
    Call the circ and line methods inside
    drawingMethods to draw a
    circle, tree, spoon, barbell.

     **      **     **     **   
    *  *    *  *   *  *   *  *   
     **      **     **     **    
	     ||     ||     ||    
		    ||     ||     
			   **     
			  *  *
			   **
    */
    public drawingMethodsA ()
    {
	System.out.println ("Here is a circle:");
	System.out.println ("Here is a tree:");
	System.out.println ("Here is a spoon:");
	System.out.println ("Here is a barbell:");
	System.out.println ("Here is an eight:");
    }


    public void circ ()
    {
	System.out.println ("  **");
	System.out.println (" *  *");
	System.out.println ("  **");
    }


    public void lines ()
    {
	System.out.println ("  ||");
    }
}
