I just want to do a simple thing that can be easily done in any programming language. I want to declare a variable, for example
def Val = 0;
and then I want to, further down, increment it. You'd think that
Val = Val + 1;
would do it but it doesn't. Can somebody help out.
Thanks in advance.
John
def Val = 0;
and then I want to, further down, increment it. You'd think that
Val = Val + 1;
would do it but it doesn't. Can somebody help out.
Thanks in advance.
John