#include <iostream>
#include "utility.h"
#include "node.h"
#include "stack.h"


using namespace std;

void main()
{
	cout << "Welcome to Stacks\n\n";
	Stack stk;
	Stack_entry itm = 'j';

	if(stk.empty())
		cout << "Empty\n\n";
	else
		cout << "Not Empty\n\n";

	stk.push(itm);

	if(stk.empty())
		cout << "Empty\n\n";
	else
		cout << "Not Empty\n\n";



	cin.get();
}