Paul wrote:

>   @a = 'A'..'Z';
>   { my @a = (0..9);
>     { local $a[3] = 'foo';
>       print join '|', @a, "\n";
>     }
>     print join '|', @a, "\n";
>   }
>   print join '|', @a, "\n";
> 
> prints
> ======
> 0|1|2|foo|4|5|6|7|8|9|
> 0|1|2|3|4|5|6|7|8|9|
> A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|
> 
> This messes up my understanding of symbol tables and scratchpads a
> bit....

how does this mess up your understanding of st and sp?

david

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to