Help for this page
sub get_params { my $self = shift; ... # or a list of key=>values pairs if they call us in list context. return wantarray ? %input : \%input; }
die "get_params in void context:".Dumper(\%input) unless defined wan +tarray;