On 6/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
+ $a # simple scalar variable
+ @a[123] # single literal subscript
+ %a{'x'} # single literal subscript
+ %a<x> # single literal subscript
+ @a[+TERM] # single term coerced to numeric for array
+ %a{~TERM} # single term coerced to string for hash
+ @a[SIMPLE] # any of these simples used as subscript recursively
+ %a[SIMPLE] # any of these simples used as subscript recursively
Typo alert: that last one should be %a{SIMPLE}, right?
Stuart
