Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,17 @@
|
|||
on run
|
||||
|
||||
concat([["alpha", "beta", "gamma"], ¬
|
||||
["delta", "epsilon", "zeta"], ¬
|
||||
["eta", "theta", "iota"]])
|
||||
|
||||
end run
|
||||
|
||||
|
||||
-- concat :: [[a]] -> [a]
|
||||
on concat(xxs)
|
||||
set lst to {}
|
||||
repeat with xs in xxs
|
||||
set lst to lst & xs
|
||||
end repeat
|
||||
return lst
|
||||
end concat
|
||||
Loading…
Add table
Add a link
Reference in a new issue