in reply to Re^4: Finding the max()/min()in thread Finding the max()/min()
sub max { my $max = shift; return $max if not @_; my $next = shift; unshift @_, $max > $next ? $max : $next; goto &max; } [download]
elusion : http://matt.diephouse.com