Example from Scheme for Max:
(let ((count 0))
(while (< count 3)
(post "count:" count)
(set! count (+ 1 count))))
in pd, this results in:
s4pd Error:
;unbound variable while in (while (< count 3) (post "count:" count) (set! count (+ 1 count)))
which tells me "while" isn't yet implemented in the pd version.
How can I best do a 'while loop' without it?
Forrest Curo
San Diego