Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
14
Task/Queue-Definition/Lasso/queue-definition-2.lasso
Normal file
14
Task/Queue-Definition/Lasso/queue-definition-2.lasso
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
local(q) = myqueue('a')
|
||||
#q->isEmpty
|
||||
// => false
|
||||
|
||||
#q->push('b')
|
||||
#q->pop
|
||||
// => a
|
||||
#q->pop
|
||||
// => b
|
||||
|
||||
#q->isEmpty
|
||||
// => true
|
||||
#q->pop
|
||||
// => void
|
||||
Loading…
Add table
Add a link
Reference in a new issue