This repo includes the resolution for 15th Challenge in Elixir Journey with Rafael Camarda.
{:ok, pid} = Queuex.Queue.start_link([1])
Queuex.Queue.enqueue(pid, 2)
# output: :ok
Queuex.Queue.dequeue(pid)
# output: 1
Queuex.Queue.dequeue(pid)
# output: 2
Queuex.Queue.dequeue(pid)
# output: nil