#include <iostream> #include <cmath> #include "playing.h" using namespace std; int main() { cout << boolalpha; cout << endl; cout << "testing playing: true's should mean passed: " << endl; cout << "---------------------------------------" << endl; cout << "(playing(5) == 52): " << (playing(5) == 52) << endl; cout << endl; return EXIT_SUCCESS; }