Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 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