10 lines
187 B
Text
10 lines
187 B
Text
|
|
Deque[String] my_queue
|
|||
|
|
|
|||
|
|
my_queue.append(‘foo’)
|
|||
|
|
my_queue.append(‘bar’)
|
|||
|
|
my_queue.append(‘baz’)
|
|||
|
|
|
|||
|
|
print(my_queue.pop_left())
|
|||
|
|
print(my_queue.pop_left())
|
|||
|
|
print(my_queue.pop_left())
|