/**
 * A simple example that uses an Object
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class ObjectExample1
{
    public static void main(String[] args)
    {
        //[0
	// Establish an identity for the object
	Color       jmuPurple;

	// Allocate memory for and initialize the attributes
	jmuPurple = new Color(69, 0, 132);
        //]0
    }

}
