Skip to content

Instantly share code, notes, and snippets.

@lestrrat
Created August 24, 2009 09:47
Show Gist options
  • Save lestrrat/173801 to your computer and use it in GitHub Desktop.
Save lestrrat/173801 to your computer and use it in GitHub Desktop.
package Hoge;
use strict;
sub new {
my ($class, %args) = @_;
$args{hoge} ||= 'unko';
return bless \%args, $class;
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment