File: MyLoadableThing.pm

package info (click to toggle)
libsys-info-base-perl 0.7807-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 709; sh: 6; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 103 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
package MyLoadableThing;

use strict;
use warnings;

sub fancy_sub {
    print "42\n";
}

1;

__END__