Bad array samples
It would be nice to have the correct array equivilents. These work but take took much code and are not efficient.
Load 10 character field to ten 1 character array elements
-------------------------------------------------------
dim x as int
dim y as int
For x= 0 To 9
y=x+1
let(x)=word1.SubString2(x,y)
Next
A silly example of an array look up and update (lookup "a" make it "?"
----------------------------------------------------------------
For x=0 To 48
if let(x)="a" Then
let(r)="?"
End If
Next