in reply to Calls the caller's method

When sub Bar::bar executes, the package Foo is already loaded and the symbol Foo::foo is already installed (as subroutine).

Replies are listed 'Best First'.
Re^2: Calls the caller's method
by anazawa (Scribe) on Jul 10, 2012 at 17:43 UTC
    That makes sense. Foo::foo() is globalized, right? I remember 'our' declaration globalizes variables.