Skip to content

Instantly share code, notes, and snippets.

Created February 26, 2015 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f2051640b4e470f33232 to your computer and use it in GitHub Desktop.
Save anonymous/f2051640b4e470f33232 to your computer and use it in GitHub Desktop.
sub foo :lvalue ($new) {
if (want("lvalue")) {
if ($new >= 0) {
$variable = $new;
} else {
croak "Attempt to store negative number in foo";
}
} else {
return $variable;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment