- or download this
&spl($total) if ($len != 1);
- or download this
$total = &spl($total) if ($len != 1);
- or download this
sub spl {
my ($num1) = @_;
...
$num1 = $total;
}
}
- or download this
sub spl {
my ($n) = @_;
...
}
return $n;
}
- or download this
use List::Util qw( sum );
...
}
return $n;
}