Help for this page

Select Code to Download


  1. or download this
    # script.pl
    
    # do stuff 1 here
    
  2. or download this
    # script.pl
    use Module::That::Does::What::I::Want qw/doit/;
    ...
    sub doit {
        # do stuff 1 here
    }
    
  3. or download this
    doit(@ARGV) unless caller;