Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    runonce();
    myfirstaddin::runonce();
    mysecondaddin::runonce();
    
  2. or download this
    # myfirstaddin.pm
    
    ...
    sub runonce { print "This is file myfirstaddin."; }
    
    1;
    
  3. or download this
    # mysecondaddin.pm
    
    ...
    sub runonce { print "This is file mysecondaddin."; }
    
    1;