RosettaCodeData/Task/Function-definition/Perl/function-definition-3.pl

6 lines
63 B
Raku

sub multiply( $$ )
{
my ($a, $b) = @_;
return $a * $b;
}