Help for this page

Select Code to Download


  1. or download this
        # SomeModule.pm
        package SomeModule;
        END { print "End of SomeModule\n"; }
        1;
    
  2. or download this
        # test.pl
        use SomeModule;
        
        END { print "End of main\n"; }