-->
Page 1 of 1

Bad Var Names ?

PostPosted: Tue Dec 29, 2015 2:19 pm
by sandfrog
Hello, i Found a Bug

i use as Var name "run"
e.g.
run = run + 1
end

the esp crash

others works
e.g.
mip = mip + 1
end

If this var use by Programmig from Basic ? its a littel Problem if you know it

lg sandfrog

Re: Bad Var Names ?

PostPosted: Tue Dec 29, 2015 2:31 pm
by timathis
run is probably a reserved name used by the basic interpreter.

try run1 or something similar.

Re: Bad Var Names ?

PostPosted: Wed Dec 30, 2015 11:26 pm
by forlotto
run is reserved for running the basic program.

runit should work though or maybe run1 as stated.