school/cs235/lab07/test.cpp

14 lines
319 B
C++
Raw Normal View History

2016-04-06 20:46:10 -07:00
#include "mimic.h"
using namespace std;
int main() {
mimic m;
m.createMap("I want to swing I want to boat Boat wants me");
cout << m << endl;
cout << "'" << m.generateText() << "'" << endl;
// m.createMap("hello beautiful world");
// cout << m << endl;
// cout << m.generateText() << endl;
}