DIM i as integer
DIM a(20) as string
Main:
a="Now is the time..."
print a
FOR i=0 to 10
Print i,a(i)
Next i
This used to work for me before upgrading to Kernel 7.65 (ARMite). Now all I get is the program ending. (I think this issue is at the root of my problems with the I2C routines, which I can address after getting this resolved.)
If I comment out the Print i,a(i) statement the program runs fine:Analyzing //ad/homedir$/Staff/A/AWHITTEN/My Documents/2014-2015/phys358/programs/str.bas
Programming Flash 2103...
ARMbasic[9.33a] on the PC Copyright 2014, Coridium Corp.
*+*+
... ( 0.18K code + 0.02K const)/16K 0.03/5K data programmed
Executing...
Welcome to ARMbasic Kernel[7.65] with Floating Point Copyright 2013, Coridium Corp.
for the ARMmite
Any ideas?Analyzing //ad/homedir$/Staff/A/AWHITTEN/My Documents/2014-2015/phys358/programs/str.bas
Programming Flash 2103...
ARMbasic[9.33a] on the PC Copyright 2014, Coridium Corp.
*+*+
... ( 0.12K code + 0.02K const)/16K 0.03/5K data programmed
Executing...
Now is the time...
... Finished in 0 ms
Adam T. Whitten