Adds an element to the end of the queue.
Example:
var queue = new Queue<string> (); queue.enqueue ("hello"); assert (queue.size () == 1);
the element to add.