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

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