summaryrefslogtreecommitdiff
path: root/dpmert/tac.pl
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-01-27 14:49:08 -0500
committerChris Dyer <cdyer@cs.cmu.edu>2012-01-27 14:49:08 -0500
commit47aa8d94d3ddff39295966cee67ce884c98be8da (patch)
tree2ff3eab22e44b2d02537a5b59460945f4aa98d9a /dpmert/tac.pl
parent203c3c3357b9ed8cfe44932c2bf5ea19eba6238c (diff)
rename vest to dpmert (dynamic programming mert), rename variables and types to correspond to standard geometric concepts
Diffstat (limited to 'dpmert/tac.pl')
-rwxr-xr-xdpmert/tac.pl8
1 files changed, 8 insertions, 0 deletions
diff --git a/dpmert/tac.pl b/dpmert/tac.pl
new file mode 100755
index 00000000..9fb525c1
--- /dev/null
+++ b/dpmert/tac.pl
@@ -0,0 +1,8 @@
+#!/usr/bin/perl
+
+while(<>) {
+ chomp;
+ $|=1;
+ print (scalar reverse($_));
+ print "\n";
+}