File: Foo.pm

package info (click to toggle)
libmodule-pluggable-perl 5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 440 kB
  • ctags: 100
  • sloc: perl: 1,510; makefile: 2
file content (10 lines) | stat: -rwxr-xr-x 101 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
package MyTest::Plugin::Foo;


use strict;

sub new { return bless {}, $_[0]; }
sub frobnitz {}
1;