Help for this page

Select Code to Download


  1. or download this
    # MyMod.pm
    use strict;
    ...
    our @EXPORT = qw( MYMOD_DEFAULT ); # No extra parens needed
    
    1;
    
  2. or download this
    # MyMod/db.pm
    use strict;
    ...
    }
    
    1;
    
  3. or download this
    # fred.pl
    use strict;
    ...
    use MyMod::db;
    
    MyMod::db::fred(); # fully qualified call
    
  4. or download this
    hello