Help for this page

Select Code to Download


  1. or download this
    my $first_stuff = first_value {$_ > 2} 1..10;
    
  2. or download this
    sub first_value (&@)
    {
    ...
        }
        return undef;
    }