Help for this page

Select Code to Download


  1. or download this
    # Stuff.pm
    package Stuff;
    use base 'Exporter';
    @EXPORT = qw(new);
    sub new { print "this is exported new!\n" }
    
  2. or download this
    # new.pl
    use Stuff;
    ...
        my $self = shift;
        print "hello from a ", ref $self, "\n"; 
    }