/**
 * A simple class for experimenting with queue functions.
 *
 * @author Your Name
 * @version The Date
 *
 */
public class QueueMain
{
    /**
     * Create a driver to test queue methods and experiment with queues.
     *
     * @param args   Command line arguments are not used in this program
     */
    public static void main (String[] args)
    {
        // Create a queue and add three String objects to it.
        // Print the contents of the queue to verify that things worked.

        // Remove an element from the queue.  Print the queue.

        // Remove all elements from the queue.  Test it.

    }    
}
