sub new { my $class = shift; my %self = @_; bless \%self, $class; } #### sub new { my $class = shift; my $self = { @_ }; bless $self, $class; }