- or download this
{
package Foo;
...
use Data::Dumper;
print Dumper(Foo->foo);
- or download this
$VAR1 = bless( {}, 'Foo' );
- or download this
*Bar::foo = \*Foo::foo;
- or download this
$VAR1 = bless( {}, 'Bar' );
- or download this
print Dumper(Foo->foo);
print Dumper(Bar->foo);