Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: How to access outside variable

by biohisham (Priest)
on Jan 21, 2011 at 10:45 UTC ( [id://883504]=note: print w/replies, xml ) Need Help??


in reply to How to access outside variable

Since $a is defined in the same package - main - what happens is that the value of $a gets merely overwritten, variables in the same package are global to that package scope,
#!/usr/local/bin/perl print __PACKAGE__ ; print "\n"; $a=10; { $a=11; print $a,"\n"; print __PACKAGE__ ; }
look up __PACKAGE__ in perlmod and perldata, coping with scoping can be a good read as well..


Excellence is an Endeavor of Persistence. A Year-Old Monk :D .

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-16 23:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found