RosettaCodeData/Task/Array-length/True-BASIC/array-length-2.basic
2023-07-01 13:44:08 -04:00

6 lines
117 B
Text

DIM fruit$(2)
MAT READ fruit$
DATA "apple", "orange"
PRINT "The length of the array 'fruit$' is "; SIZE(fruit$)
END