Skip to content

Instantly share code, notes, and snippets.

@adeolaawoyemi
Created February 4, 2011 16:31
Show Gist options
  • Save adeolaawoyemi/811315 to your computer and use it in GitHub Desktop.
Save adeolaawoyemi/811315 to your computer and use it in GitHub Desktop.
new()
sub new {
my $self = shift;
my $args = @_ && ref $_[0] eq 'HASH' ? shift : { @_ };
my $class = ref($self) || $self;
return bless $args, $class;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment