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().