File: InheritanceParent.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 (11 lines) | stat: -r--r--r-- 171 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
package InheritanceParent;
use strict;
use warnings;

use Exporter::Declare qw/default_export import/;

default_export the_export => sub {
    return 'the_export';
};

1;