my $Config = {}; sub config { my ($class, %args) = @_; if(%args) { while(my($key, $val) = each %args) { $Config->{$key} = $val; } } return $Config; }