Help for this page

Select Code to Download


  1. or download this
    # Common.pm
    package Common;
    ...
        # do other stuff
    }
    1; # have to return a non-zero value at end!
    
  2. or download this
    # client.pl
    use  strict;
    ...
    
    Common::foo();
    Common::bar();