Help for this page

Select Code to Download


  1. or download this
    package Fruit;
    use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK};
    require Exporter;
    ...
     # slice here..
    }
    1;
    
  2. or download this
    package Fruit::Apple;
    use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK};
    require Exporter;
    ...
     slice;
    }
    1;
    
  3. or download this
    #!/usr/bin/perl -Tw
    # this is makesalad.cgi
    ...
    cut;
    
    exit;