Help for this page

Select Code to Download


  1. or download this
    fred.pl
    use MyMod;
    MyMod::db->fred(MYMOD_DEFAULT);
    
  2. or download this
    MyMod.pm
    use strict;
    ...
            print "The constant is ", $_[1], "\n";
    }
    1;
    
  3. or download this
    MyMod/db.pm
    use strict;
    ...
            print "hello\n" if (MYMOD_DEFAULT);
    }
    1;