Page 1 of 1

Is there 'params'?

PostPosted: Sat Jun 29, 2013 11:23 am
by Chasm
Hi there guys, is there an equivalent to the params keyword? I must be searching in the wrong place, because I didn't manage to find anything.

Thanks for any info

Re: Is there 'params'?

PostPosted: Sat Jun 29, 2013 12:09 pm
by kirai84
def sum(a as vari int) as int
sum = 0
for i in a
sum += i
return sum

Re: Is there 'params'?

PostPosted: Sat Jun 29, 2013 2:04 pm
by Chasm
Awesome, thanks!