Data update

This commit is contained in:
Ingy döt Net 2025-08-11 18:05:26 -07:00
parent 4d5544505c
commit 4924dd0264
3073 changed files with 55820 additions and 4408 deletions

View file

@ -0,0 +1,12 @@
require "queue"
local tasks = new pqueue()
tasks:push(3, "Clear drains")
tasks:push(4, "Feed cat")
tasks:push(5, "Make tea")
tasks:push(1, "Solve RC tasks")
tasks:push(2, "Tax return")
while !tasks:empty() do
local [p, v] = tasks:pop()
print($"{p} {v}")
end