At 11:45 PM +0100 7/11/02, Dave Mitchell wrote:
>On Thu, Jul 11, 2002 at 10:37:27PM +0100, Nicholas Clark wrote:
>>  Is there any specific case where you can't treat
>>
>>  {
>>    my $foo = 12;
>>    print $foo;
>>    my $foo = "ho";
>>    print $foo;
>>  }
>>
>>  as
>>
>>  {
>>    my $foo = 12;
>>    print $foo;
>>    {
>>      my $foo = "ho";
>>      print $foo;
>>    }
>>  }
>
>Well, it B*gg*rs up %MY::

True, but if we're only worrying about it for perl 5 code being 
translated, it's not a big deal since it won't be using %MY.
-- 
                                         Dan

--------------------------------------"it's like this"-------------------
Dan Sugalski                          even samurai
[EMAIL PROTECTED]                         have teddy bears and even
                                       teddy bears get drunk

Reply via email to