Help for this page

Select Code to Download


  1. or download this
    $   cp Cart.pl Cart.pm
    
  2. or download this
    #!/usr/bin/perl -w 
    use strict;
    ...
    |
    | etc
    |
    
  3. or download this
    package Cart;
    
    ...
    }
    
    1;
    
  4. or download this
    #!/usr/bin/perl -w 
    use strict;
    ...
    |
    | etcetera...
    |
    
  5. or download this
    use FindBin qw/ $Bin /;
    use lib "$Bin";
    | etc