q = queue();
To add an item into the queue,
q.enqueue(x);
To remove the next available item in the queue
x = q.dequeue();
To check the length of the queue
s.length;