7 lines
152 B
Text
7 lines
152 B
Text
function Map oldlist, func
|
|
put () into newlist
|
|
repeat with each item of oldlist
|
|
insert (func)(it) after newlist
|
|
end repeat
|
|
return newlist
|
|
end Map
|