Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^3: if(my) scope

by ikegami (Patriarch)
on Apr 16, 2009 at 15:53 UTC ( [id://758019]=note: print w/replies, xml ) Need Help??


in reply to Re^2: if(my) scope
in thread if(my) scope

You changed
if (my $var) { ... }
to
if (...) { my $var; ... }
use strict; use warnings; use Devel::Peek; my $ref; if ((my $fred = 42), 1) { $ref = \$fred; Dump($$ref); } Dump($$ref);
SV = IV(0x816a5cc) at 0x814f684 REFCNT = 2 FLAGS = (PADBUSY,PADMY,IOK,pIOK) IV = 42 SV = IV(0x816a5cc) at 0x814f684 REFCNT = 2 FLAGS = (PADBUSY,PADMY,IOK,pIOK) IV = 42

A scope is created for if's curlies, but only a compile-time scope is created for the condition expression.

Btw, note the proper usage of Dump.

Replies are listed 'Best First'.
Re^4: if(my) scope
by cdarke (Prior) on Apr 16, 2009 at 16:01 UTC
    Doh!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://758019]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (10)
As of 2024-04-18 14:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found