5 lines
77 B
Perl
5 lines
77 B
Perl
|
|
use experimental 'signatures';
|
||
|
|
sub multiply ($x, $y) {
|
||
|
|
return $x * $y;
|
||
|
|
}
|