Help for this page

Select Code to Download


  1. or download this
    $ perl -le'undef $_; defined $_->{0}; print $_'
    HASH(0x813f1c8)
    
  2. or download this
    while( defined $bros->{ $find }->[ $index ]->{ $key } ) {
        # ...
    }
    
  3. or download this
    while(
        ref $bros->{ $find }->[ $index ]
    ...
    ) {
        # ...
    }
    
  4. or download this
    for my $year ( qw( 1958 1959 1960 1961 1962 1963 1964 ) ) {
        for my $film ( @{ $bros->{ $year } } ) {
    ...
                if $film->{ $key } =~ /$data/i;
        }
    }
    
  5. or download this
    for my $year ( qw( 1958 1959 1960 1961 1962 1963 1964 ) ) {
        push @res, (
    ...
            @{ $bros->{ $year } },
        );
    }