in news:3ff6ac42$1@news.povray.org Thorsten Froehlich wrote:
>> #J = J + 1;> > I like this syntax for manipulating already declared variables.
Why not throw the # away completely?
J = 0;
J = J + 1;
Everything is local, unless it is declared global,
#global J = "global"
Ingo