/*
testCharSets.cc  -- Program to test CharSets

Author: Larry Morell

Modification History
Date        Action
03/13/06  -- Original version

*/
using namespace std;
#include <iostream>
#include <string>
#include "CharSets.h"
using namespace std;

int main () {
  CharSet ES;
  ES.displayln();
  return 0;
}


