To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
read EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
read Example
10 DIM Array(4)
20 DATA 1, 2, 3, 4, 5
30 RESTORE
40 CLEAR SCREEN
50 READ Array(*)
60 PRINT "The data read into the array: "
70 PRINT Array(*)
80 END