RosettaCodeData/Task/Multi-dimensional-array/FreeBASIC/multi-dimensional-array-1.basic
2023-07-01 13:44:08 -04:00

7 lines
243 B
Text

'' declare a three-dimensional array of single
'' precision floating-point numbers.
Dim array(1 To 2, 6, 3 To 5) As Single
'' The first dimension of the declared array
'' has indices from 1 to 2, the second, 0 to 6,
'' and the third, 3 to 5.