RosettaCodeData/Task/Priority-queue/Wren/priority-queue.wren

13 lines
281 B
Text
Raw Permalink Normal View History

2024-03-06 22:25:12 -08:00
import "./queue" for PriorityQueue
2023-07-01 11:58:00 -04:00
var tasks = PriorityQueue.new()
tasks.push("Clear drains", 3)
tasks.push("Feed cat", 4)
tasks.push("Make tea", 5)
tasks.push("Solve RC tasks", 1)
tasks.push("Tax return", 2)
while (!tasks.isEmpty) {
var t = tasks.pop()
System.print(t)
}