Color BASIC: Difference between revisions

Content deleted Content added
m wkf
Line 9:
 
===Examples===
<source lang="sdlbasicgwbasic">
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="sdlbasicgwbasic">
A(1)=1
A$(1)="BOOKS"
</source>
Multiple dimensions are separated by commas
<source lang="sdlbasicgwbasic">
A(1,3)=4
A$(2,2)="XYZ123"