Welcome to mirror list, hosted at ThFree Co, Russian Federation.

filter-stdout.pl « phrase.nbest-multi-factor.distinct « tests - github.com/moses-smt/moses-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a272c1637b2d41c1ff4046e12c91d39e2ae7f86 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env perl
$x=0;
while (<>) {
  chomp;
  print "TRANSLATION_$x=$_\n";
  $x++;
}