RosettaCodeData/Task/Array-length/True-BASIC/array-length-2.basic

7 lines
117 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
DIM fruit$(2)
MAT READ fruit$
DATA "apple", "orange"
PRINT "The length of the array 'fruit$' is "; SIZE(fruit$)
END