Warning: A non-numeric value encountered in /web5/aldweb/www/aldweb_com/www/thread.php on line 497
Answer n° 1 -------- 19/03/2005 @ 11:12 by aldweb
visitor |
Steven,
Indexed variables (or single dimension arrays), so A() and A$(), are considered as functions in iziBasic's parser. And functions cannot be nested one into another in iziBasic.
So, syntaxes like the ones you highlighted are indeed not valid in iziBasic. You should do:
T=A(%counter%) : INC T : A(%counter%)=T or A(%counter%)=A(%counter%)+1
T=A(%counter%) : A$=STR$(T,0)
Cheers
@+ aldweb |