Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: What I Most Recently Learned in Perl, But Should Have Already Known

by pKai (Priest)
on Aug 17, 2006 at 22:55 UTC ( [id://568039]=note: print w/replies, xml ) Need Help??


in reply to Re: What I Most Recently Learned in Perl, But Should Have Already Known
in thread What I Most Recently Learned in Perl, But Should Have Already Known

# $rec is an alias...

It's the previously declared lexical, implicitly localized. See perldoc perlsyn...

Shorter example, without the need to blame AoH for the problem:

my $var = 4; for $var (1 .. 9) { last if $var == 7; } print $var; # prints: 4

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-03-29 05:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found