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,12 @@
|
|||
put "a,b,c" into list1
|
||||
put 10,20,30 into list2
|
||||
split list1 using comma
|
||||
split list2 using comma
|
||||
repeat with i=1 to the number of elements of list1
|
||||
put list2[i] into list3[list1[i]]
|
||||
end repeat
|
||||
combine list3 using comma and colon
|
||||
put list3
|
||||
|
||||
-- ouput
|
||||
-- a:10,b:20,c:30
|
||||
Loading…
Add table
Add a link
Reference in a new issue