8 lines
243 B
Text
8 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.
|