Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^4: if(my) scope

by oha (Friar)
on Oct 12, 2009 at 14:50 UTC ( [id://800729]=note: print w/replies, xml ) Need Help??


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

that's another thing:
if(my $x = expr) { ... } # my always executed my $x if expr; # my is conditional if(expr) { my $x } # as above
what i was saying is that if i can my on a arg of a function, maybe i can do the same in the "argument" of a if

Oha

Replies are listed 'Best First'.
Re^5: if(my) scope
by ikegami (Patriarch) on Oct 12, 2009 at 17:01 UTC
    "as above" is unclear. I think you meant "my is conditional", but it's really "my always executed" (in the scope in which it resides).
    c() or my $x; # XXX Conditionally executed c() and my $x; # XXX Conditionally executed my $x if c(); # XXX Conditionally executed (same as previous) sub foo { my $x } # OK Always executed if (c()) { my $x } # OK Always executed die; my $x; # OK Always executed

Log In?
Username:
Password:

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

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

    No recent polls found