mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
10 lines
155 B
Nim
10 lines
155 B
Nim
import heapqueue
|
|
|
|
var test_queue : HeapQueue[int]
|
|
|
|
test_queue.push(7)
|
|
test_queue.push(3)
|
|
test_queue.push(9)
|
|
let i = test_queue.pushpop(10)
|
|
doAssert i == 3
|