SESSION queue is used.
If name is specified as .nil the new
RexxQueue instance is associated with a newly created Rexx external data
queue with a system-generated name.
If name is specified and an external
data queue named name exists, it is
opened.
If such a data queue does not exist, it is created.
q = .RexxQueue~new
q~queue("line")
q~push("header")
say q~queued q~pull -- 2 header
q~delete