On Sat, Aug 02, 2003 at 10:29:05PM -0500, Abhijit A. Mahabal wrote:
: This is a rather silly question:
: 
: The code:
:       macro foo() { return {my $x = 7} }
:       foo;
:       print $x;
: 
: is equivalent to which of the following?
: 
:       {my $x = 7}
:       print $x;
: 
: or
: 
:       my $x = 7;
:       print $x;

More like

        do { my $x = 7 };
        print $x;

I suspect.

Larry

Reply via email to