Help for this page

Select Code to Download


  1. or download this
    #######
    
    ...
    }
    
    #######
    
  2. or download this
    package Modulino::B;
    use base qw( Modulino::A );
    ...
    sub buy { print "[alternative way to buy ", $_[0], "]\n" }
    
    #######
    
  3. or download this
    # Demonstrate use of Modulino::A's exported functions...
    $ perl -MModulinoA=buy -le 'buy("camels and onions")'
    
    #######