erik hansen wrote:

> --- Richard Gaskin <[EMAIL PROTECTED]>
> wrote:
> 
>> function AddPoints pPointsListA, pPointsListB
>> put 0 into tCounter
>> repeat for each item n in pPointsListA
>> put n+tCounter into item n of tResult
>> end repeat
>> return tResult
>> end AddPoints
> 
> this looks useful.
> what does tCounter do?

It counts each iteration through the loop so you know which item you're
working with.  It works better when the code's not as FUBAR as originally
written -- s/b:

function AddPoints pPointsListA, pPointsListB
   put 0 into tCounter
   repeat for each item n in pPointsListA
     put n+(item tCounter of pPointsListB) into item n of tResult
   end repeat
   return tResult
end AddPoints

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge 2.2: Publish any database on any site
 ___________________________________________________________
 [EMAIL PROTECTED]       http://www.FourthWorld.com
 Tel: 323-225-3717                       AIM: FourthWorldInc

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to