Help for this page

Select Code to Download


  1. or download this
    while( my ($k, $v) = each(%ENGINES)){
        push @eng, $v->{'name'};
    }
    
  2. or download this
    for my $k (keys %ENGINES) {
        my $v = $ENGINES{$k};
        push @eng, $v->{'name'};
    }