- or download this
# instead of
my $class = shift;
my $self = bless {}, ref($class) || $class;
# try
my $self = bless {}, ref($_[0]) || @_
- or download this
sub foo {
# some stuff
open my $fh, @_;
return $fh;
}
- or download this
sub foo {
# some stuff
...
}
return $fh;
}