
9-18
Example
DIM samp1(5) 'Declares samp1 as an array variable of a single precision
'real type with size (5).
DIM samp2(10, 10) 'Declares samp2 as an array variable of a single precision
'real type with size (10, 10).
DIM samp3(20, 5, 10) 'Declares samp3 as an array variable of a single precision
'real type with size (20, 5, 10).
DIM samp4% (3, 3, 3) 'Declares samp4 as an array variable of an integer type with
'size (3, 3, 3).
DIM samp5! (4, 3) 'Declares samp5 as an array variable of a single precision
'real type with size (4, 3).
DIM samp6# (3) 'Declares samp6 as an array variable of a double precision
'real type with size (3).
Comentários a estes Manuais