Help for this page

Select Code to Download


  1. or download this
    my $first = first{ length > 3 } @array;
    print $first;
    
  2. or download this
    my $first;
    for ( @array ) {
    ...
        last;
    }
    print $first;