this works:
s$var[0] = '0'
s$var[1] = '1'
this doesn't:
0@s[0] = '0' // error Invalid local variable name 0@s.
As an implication custom string variables also get wrong indexes:
string x[3]
x[0] = '0' // 0@ - ok
x[1] = '1' // 1@ - wrong
x[2] = '0' // 2@ - wrong
this works:
this doesn't:
As an implication custom string variables also get wrong indexes: