/********************************************************************************************
enumtype.cpp
Jim Millard
for CO311
Using enum
********************************************************************************************/
#include <iostream>
#include <string>
using namespace std;
#include "ezwin.h"
void main()
{
for (color c = Black; c <= Magenta; c++)
cout << c << endl;
}