Code: Select all
DIM global1
DIM global2 '...
#include one.bas
#include two.bas '...
main:
Code: Select all
DIM global1
DIM global2 '...
#include one.bas
#include two.bas '...
main:
Code: Select all
dim lcdData(10)
lcdData(0)=69
if lcdData(0) = "E" then print "they are the same"
run
...
compile done
Programming Flash *+*+
done
Executing...
they are the same