File: InheritanceChild.pm

package info (click to toggle)
libexporter-declare-perl 0.114-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 228 kB
  • sloc: perl: 1,607; makefile: 4
file content (9 lines) | stat: -r--r--r-- 106 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
package InheritanceChild;
use strict;
use warnings;

use base 'InheritanceParent';

sub foo { 'foo' }

1;