//brian jahns
//cs252 1999
//driver for the Stack
#include <iostream.h>
#include "Stack.h"
#include "Node.h"
int main()
{
Stack<int> s;
int d;
s.push(1);
s.push(3);
s.gettop(d);
cout<<d<<" is top"<<endl;
s.pop();
s.push(4);
s.pop();
s.pop();
cout<<"isempty()"<<s.isempty()<<endl;
return 0;
}