7 lines
122 B
Text
7 lines
122 B
Text
|
|
on double (someList)
|
||
|
|
cnt = someList.count
|
||
|
|
repeat with i = 1 to cnt
|
||
|
|
someList[i] = someList[i] * 2
|
||
|
|
end repeat
|
||
|
|
end
|