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
13
Task/Collections/Lingo/collections.lingo
Normal file
13
Task/Collections/Lingo/collections.lingo
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
-- list stuff
|
||||
l = [1, 2]
|
||||
l.add(3)
|
||||
l.add(4)
|
||||
put l
|
||||
-- [1, 2, 3, 4]
|
||||
|
||||
-- property list stuff
|
||||
pl = [#foo: 1, #bar: 2]
|
||||
pl[#foobar] = 3
|
||||
pl["barfoo"] = 4
|
||||
put pl
|
||||
-- [#foo: 1, #bar: 2, #foobar: 3, "barfoo": 4]
|
||||
Loading…
Add table
Add a link
Reference in a new issue