5 lines
63 B
Raku
5 lines
63 B
Raku
sub multiply( $$ )
|
|
{
|
|
my ($a, $b) = @_;
|
|
return $a * $b;
|
|
}
|