Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    # etc etc etc
    
    done_testing(); # epilogue
    
  2. or download this
    perl Makefile.PL
    make all
    make test
    
  3. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    die unless $results;
    
    print "$0 : done, success.\n";
    
  4. or download this
    my $config = get_secrets();
    my $trans = Net::API::DeepL->new($config);
    ...
    for my $totranslate (@$translations){
      push @results, $trans->http_tiny($totranslate);
    }