7 lines
113 B
Text
7 lines
113 B
Text
on sum ()
|
|
res = 0
|
|
repeat with i = 1 to the paramCount
|
|
res = res + param(i)
|
|
end repeat
|
|
return res
|
|
end
|