File: Foo.pm

package info (click to toggle)
libtest-memory-cycle-perl 1.06-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 136 kB
  • sloc: perl: 420; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 102 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package Foo;

use strict;
use warnings;

sub new {
    my $class = shift;
    bless {}, $class;
}

1;