/* Enumerated types are types where ALL of the
instances of the type are listed inside the type
definition. */


enum LetterGrade {
	/* named instances */
	A,B,C,D,F;

}
