local(q) = myqueue('a')
#q->isEmpty
// => false
#q->push('b')
#q->pop
// => a
// => b
// => true
// => void