File: Banana.pm

package info (click to toggle)
libsub-wrappackages-perl 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 168 kB
  • ctags: 24
  • sloc: perl: 247; makefile: 2
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;