////////////////////////// Animal Class Example A ////////////////////////////////
		
		class Animal	{
		
		  /** 3 numeric variables to hold our information */
		  int height;
		  int weight;
		  int lifespan;

		};