[] and []= methods
used by other collection classes. The [] method
provides an alternate means of accessing compound variables that also allows
embedded subexpressions.a.[1+2,3+4]=17 -- assigns A.3.7
Say a.3.7 -- => 17
v1='1+2'
v2='3+4'
a.v1.v2=18 -- tail used: '1+2.3+4'
Say a.['1+2','3+4'] -- => 18
Parse Value '1 2 3' With . a.[1,1+1] .
Say a.1.2 -- => 2