File: Baz.pm

package info (click to toggle)
libmethod-autoload-perl 0.02-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: perl: 120; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 148 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
package #hide from CPAN
        My::Baz;
use strict;
use warnings;
sub foo {"My::Baz::foo"};
sub bar {"My::Baz::bar"};
sub baz {"My::Baz::baz"};
1;