7 lines
182 B
Text
7 lines
182 B
Text
pq := empty()$PriorityQueue(Integer,String)
|
|
pq(3):="Clear drains";
|
|
pq(4):="Feed cat";
|
|
pq(5):="Make tea";
|
|
pq(1):="Solve RC tasks";
|
|
pq(2):="Tax return";
|
|
[extract!(pq) for i in 1..#pq]
|