Created
February 27, 2012 22:32
-
-
Save aggrolite/1927594 to your computer and use it in GitHub Desktop.
power
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 power { | |
my ( $base, $exponent ) = @_; | |
my $result = 1; | |
for ( my $i = 0 ; $i < $exponent ; $i++ ) { | |
$result = $result * $base; | |
} | |
return $result; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment