- or download this
# lib/Animal.pm
...
if ( $baloo->is_furry ) {
$baloo->eat_honey;
}
- or download this
# AliceUtils.pm
...
use BobUtils;
BobUtils::save_data( "my file", "Hello world!\n" );
- or download this
# AliceUtils.pm
...
use BobUtils 'save_data';
save_data( "my file", "Hello world!\n" );