Content deleted Content added
m wkf |
|||
Line 9:
===Examples===
<source lang="
A=5
A$="THIS IS A STRING"
Line 20:
Multidimensional arrays are also supported with both numeric and string variables. In the case of an array, the element address is enclosed with a parenthesis:
<source lang="
A(1)=1
A$(1)="BOOKS"
</source>
Multiple dimensions are separated by commas
<source lang="
A(1,3)=4
A$(2,2)="XYZ123"
|