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,24 @@
|
|||
put 3 into fruit["apples"]
|
||||
put 5 into fruit["pears"]
|
||||
put 6 into fruit["oranges"]
|
||||
put "none" into fruit["bananas"]
|
||||
|
||||
put "Keys:" & cr & the keys of fruit & cr into tTmp
|
||||
put "Values 1:" & tab after tTmp
|
||||
repeat for each line tKey in the keys of fruit
|
||||
put fruit[tkey] & comma after tTmp
|
||||
end repeat
|
||||
|
||||
-- need to copy array as combine will change variable
|
||||
put fruit into fruit2
|
||||
combine fruit2 using comma
|
||||
put cr & "Values2:" & tab after tTmp
|
||||
repeat for each item f2val in fruit2
|
||||
put f2val & comma after tTmp
|
||||
end repeat
|
||||
|
||||
combine fruit using return and ":"
|
||||
put cr & "Key:Values" & cr & fruit after tTmp
|
||||
-- alternatively, use same loop as for values 1 with tkey && fruit[tKey]
|
||||
|
||||
put tTmp
|
||||
Loading…
Add table
Add a link
Reference in a new issue