in reply to Re^2: I think Perl ruined me as a programmer
in thread I think Perl ruined me as a programmer
The function should be:
sub min { my $min = shift; foreach (@_) { $min = $_ if $_ < $min; } return $min; }
In Section
Meditations