Help for this page

Select Code to Download


  1. or download this
    unless (caller() =~ /main/) {
        My::Standalone->run();
    ...
    }
    
    1;
    
  2. or download this
    #!perl
    use strict;
    ...
    print "Do something\n";
    run(); # Call the run function
    exit;