Help for this page

Select Code to Download


  1. or download this
    sub a { 
         print "letter a";
    ...
         print "whispers softly";
    }
    1;
    
  2. or download this
    require Foo;
    
    ...
    print "\n";
    
  3. or download this
    $ perl require.pl 
    whispers softly Letter B
    
  4. or download this
    package Foo;
    sub a{
    ...
    }
    1;
    
  5. or download this
    $ perl require.pl 
    Undefined subroutine &main::mother_mary called at require.pl line 3.