Help for this page

Select Code to Download


  1. or download this
    my @langs       = ('en', 'de', 'fr', 'it', 'gr', '...');
    my @projects    = ('dogs', 'cats', 'birds', 'horses');
    my @targets     = ('images', 'data', 'links', 'other');
    
  2. or download this
    endogs, encats, enbirds, enhorses
    dedogs, decats, debirds, dehorses
    frdogs, frcats, frbirds, frhorses
    itdogs, itcats, itbirds, ithorses
    grdogs, grcats, grbirds, grhorses
    
  3. or download this
    endogs/images.tar.bz2
    endogs/data.tar.bz2
    ...
    decats/data.tar.bz2
    decats/links.tar.bz2
    decats/other.tar.bz2
    
  4. or download this
    foreach my $lang (@langs) {
            foreach my $project (@projects) {
    ...
                    }
            }
    }
    
  5. or download this
    'it' => 'Italian' { ... },
    'es' => 'Spanish' { ... },
    ...