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
|
|
@ -0,0 +1,10 @@
|
|||
command assocArray
|
||||
local tArray
|
||||
put "value 1" into tArray["key 1"]
|
||||
put 123 into tArray["key numbers"]
|
||||
put "a,b,c" into tArray["abc"]
|
||||
|
||||
put "number of elements:" && the number of elements of tArray & return & \
|
||||
"length of item 3:" && the length of tArray["abc"] & return & \
|
||||
"keys:" && the keys of tArray
|
||||
end assocArray
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
number of elements: 3
|
||||
length of item 3: 5
|
||||
keys: key numbers
|
||||
abc
|
||||
key 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue