#include "PriorityQueue.hh"

int main ()
{
  PriorityQueue<int> pq;

  pq.push (5);
  pq.push (14);
  pq.push (8);
  pq.push (11);
  pq.push (45);
  pq.push (9);

  while (!pq.empty ())
    {
    }

  return 0;
}
