Is there a more elegant way of incrementing a variable then this?
put i + 1 into i
Incrementing a variable
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Incrementing a variable
You can do
add 1 to i
add 1 to i
vamp07 wrote:Is there a more elegant way of incrementing a variable then this?
put i + 1 into i