File: Fascisto.pm

package info (click to toggle)
libtangram-perl 2.12-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,304 kB
  • sloc: perl: 10,260; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package Fascisto;

sub new
{
   my $pkg = shift;
   my $foo = bless { $pkg->defaults, @_ }, $pkg;
   return $foo;
}

sub defaults
{
   return ();
}

1;
__END__;