Last status of this error: > -- > $ perl compile.pl test.bas Use of uninitialized value in concatenation > (.) or string at compile.pl line 22, <D> line 10. > At BASIC source line : > at source line 0 at COMP_toker.pm line 208, > <D> line 10.
This now counts up to 100 and complains at the end that the "run time branch of isn't found" (due to missing 'end' in basic program) Is this closable now? Convertable to a test? (It's been a long time since I programmed in Basic. (or tcl, for that matter. =-)) The code is: dim a$() for i = 0 to 100 step .5 for j = 1 to 30 a$(j)=" " next j for j = 1 to 30 print " "; next j print i next i