On 12/15/05, Gaal Yahas <[EMAIL PROTECTED]> wrote:
> What should this mean?
>
> package Foo;
> sub Bar::baz is export { ... }
>
> The problem is in how callers request this export.
>
> use Foo ;
Hmm. My gut reaction is that that is the correct way to request that export.
> Looks w
What should this mean?
package Foo;
sub Bar::baz is export { ... }
The problem is in how callers request this export.
use Foo ;
Looks weird, as this demonstrates:
package Foo;
sub baz is export { "I am Foo::baz" }
sub Bar::baz is export { "I am Bar::baz" }
C