Is there a simple way to repeatedly add an integer to another integer. I want to output something like 2, 4, 6, 8 etc.. Specifically, each time a sub recieves a bang I want it to output the next number in the sequence,
Thanks in advance
-
Total newbie question
-
[inlet]
|
[ f ]X[+ 2]
|
[outlet] -
yeah, and make sure that the outlet of your [ + 2 ] object goes into the RIGHT HAND INLET of the [ f ] object. else you're gonna get a recursive loop.
-
thank you very much!