function sum
put 0 into total
repeat with paramNum = 1 to the paramCount
put param(paramNum) into list
repeat with i = 1 to the number of items in list
add item i of list to total
end repeat
end repeat
return total
end sum
This article is adapted from the Claris Tech Info database.