Hi,
am I right in assuming that the following is supposed to work after a
while ago arbitrary "element-of-nesting" was enabled?
<hansl>
bundle b = null
strings b.ss = defarray("a", "b")
scalar b.a = 2
eval b.ss[1] # works, "a"
eval b["a"] # works, 2
string s = "a"
eval b[s] # works, 2
eval b[b.ss[1]] # fails, complains about wrong [
</hansl>
Oh BTW, I'm expecting to get out the same as for b["a"] (== 2).
thanks,
sven