arrays not working ver2.0
Posted: Tue Aug 02, 2016 10:55 pm
Arrays not working in ver 2.0
Pls show example code to use arrays.
Pls show example code to use arrays.
-->
Open Community Forum for ESP8266, Come share Arduino and IoT (Internet of Things)
https://www.esp8266.com/
dim bla$(10)
'fill array with stuff
for x = 1 to 10
bla$(x) = str(x) & " is my loop no"
next x
'print stuff from array
for x = 1 to 10
print bla$()
next x