- or download this
# Accessor_Factory.pm
use strict;
...
return;
}
__END__
- or download this
# Foo.pm
use strict;
...
return bless +{}, shift;
}
__END__
- or download this
# demo.pl
use strict;
...
print $foo->baz( 100 ), "\n";
__END__
- or download this
1
3
...
8
88
100