Skip to content

Instantly share code, notes, and snippets.

@kowey
Created December 21, 2010 11:23
Show Gist options
  • Select an option

  • Save kowey/749813 to your computer and use it in GitHub Desktop.

Select an option

Save kowey/749813 to your computer and use it in GitHub Desktop.
sub set_default {
my $hashref = shift;
my $k = shift;
my $def = shift;
$hashref->{$k} = $def unless defined $hashref->{$k};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment