/* CS102 - Jim Plank */
/* A program that uses the MasterMind class to play a game between Tom and Jerry */

#include <iostream>
using namespace std;

#include "mm.h"

int main()
{
  MasterMind game;

  game.play_game("Tom", "Jerry");

  return 0;
}

