aboutsummaryrefslogtreecommitdiff
path: root/template/perl/snip-new.pl
blob: 0a6ef661d87411f1c356fb6e0222cb0fb6d13e7b (plain)
1
2
3
4
5
6
sub new {
    my $class = shift;
    return bless { @_ } , ref $class || $class;
}

{{_cursor_}}