Help for this page

Select Code to Download


  1. or download this
    package A;
    use B;
    ...
      do_something(); # subroutine in standard.pl
      return $self;
    }
    
  2. or download this
    package B;
    require 'standard.pl';
    ...
      do_something(); # subroutine in standard.pl
      return $self;
    }
    
  3. or download this
    # standard.pl
    # [snip]
    ...
      print "Howdy.\n";
    }
    1;
    
  4. or download this
    Undefined subroutine A::do_something called at A.pm line X.
    
  5. or download this
      do_something();
    
  6. or download this
      B::do_something();