Mirror of
forum.nim-lang.org
index
6024 :: Module queues is not working? Is it deprecated?
[2020-03-03T11:24:32+01:00]
View Orginal
hany33
(orginal)
[2020-03-03T11:24:32+01:00]
view original
Is it deprecated?
Varriount
(orginal)
[2020-03-03T12:13:20+01:00]
view original
What problems are you having? Can you post code that demonstrates your problems?
hany33
(orginal)
[2020-03-03T12:49:24+01:00]
view original
import queues var q = initQueue
int
q.add(8) q.add(18) Error: cannot open file: queues
enthus1ast
(orginal)
[2020-03-03T12:52:51+01:00]
view original
Think it is called dqeues now
https://nim-lang.org/docs/deques.html
hany33
(orginal)
[2020-03-03T13:32:36+01:00]
view original
Thanks