File: Banana.pm

package info (click to toggle)
libsub-wrappackages-perl 1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 92 kB
  • ctags: 17
  • sloc: perl: 160; makefile: 44
file content (8 lines) | stat: -rw-r--r-- 105 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
package Fruit;
sub eat  { 'yum yum' }

package Banana;
use base 'Fruit';
sub peel { 'ready to eat' }

1;