- Rem
- The Array command creates a BlitzMax array, a container type containing a sequence
- of a specified primitive or custom &Type.
- End Rem
- Local a[]
- Local b#[]
- Local c[][]
- a=Array[20] 'an integer array with 20 elements
- b=Array#[10] 'a floating point array of 10 elements
- print len b
|