/* Stack tester
 *********************************************************/

#include "Stack.h"          // our own -- <stack> for STL version
#include <iostream>
using namespace std;

int main()
{
   Stack s;
   cout << 
//         boolalpha << 
          "s empty? " << s.empty() << endl;
}
