SmallBASIC implementations:
I am using FLTK SmallBASIC on lubuntu 12.10.
I ran the following (pointless) program:
DIM A(6)
LET A(1) = 1
LET A(2) = "Benjamin"
LET A(3) = 25
LET A(4) = 5
LET A(5) = A(0)
LET A(6) = 355999
FOR I = 0 TO 6
PRINT A(I)
NEXT I
END
And got this result:
0
1
enjamin
25
5
0
3555999
As you can see, the "B" in "Benjamin" is missing. I then replaced the third line with
LET A(2) = " Benjamin"
which produced
Benjaminn