Help for this page

Select Code to Download


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