You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
165 B
Perl

sub factorial
{
my $value = shift (@_);
return $value == 1 ? $value : $value * factorial ($value - 1);
}
$result = factorial(6);
print $result;