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