Created
November 9, 2012 04:02
-
-
Save samiron/4043627 to your computer and use it in GitHub Desktop.
Play with Perl Parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sub sum{ doit('+', @_) } | |
sub fact{ mul(1..shift) } | |
sub mul{ doit('*', @_) } | |
sub doit | |
{ | |
my ($d, @nums) = @_; | |
return eval( join($d, @nums) ); | |
} | |
print fact(5); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment