RosettaCodeData/Task/Call-a-function/Lingo/call-a-function-12.lingo
2023-07-01 13:44:08 -04:00

6 lines
122 B
Text

on double (someList)
cnt = someList.count
repeat with i = 1 to cnt
someList[i] = someList[i] * 2
end repeat
end