Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^3: Perl "new" command

by tobyink (Canon)
on Mar 01, 2012 at 11:31 UTC ( [id://957177]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Perl "new" command
in thread Perl "new" command

The first Foo is the name of a package, as in...

package Foo; sub bar { print "Inside the package, I am called 'bar'\n"; print "But outside the package, I am called Foo::bar\n"; }

The second "Foo" is just a string scalar.

I really think you need to read perlboot from start to finish.

Replies are listed 'Best First'.
Re^4: Perl "new" command
by JavaFan (Canon) on Mar 01, 2012 at 11:42 UTC
    In that example, the sub can be called as Foo::bar() regardless whether you are inside or outside the package. It's just that inside the package, the sub can also be called as bar().

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-20 01:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found