Help for this page

Select Code to Download


  1. or download this
    package SelfRecord;
    use strict;
    ...
    print "\n__END__\n";
    
    1;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    require SelfRecord;
    
    print "Hello!"
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    __END__
    Hello!