diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-01-27 14:49:08 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-01-27 14:49:08 -0500 |
commit | 89b662b51373f0f466d62a65d3f0a164d1d31b1c (patch) | |
tree | efff9d60e5c128c054f848fa802e9f077cad54b1 /dpmert/tac.pl | |
parent | 3d17bf9ae1ba67cd091794839d4d5f4c393a0e2c (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-x | dpmert/tac.pl | 8 |
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"; +} |