aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-08-29 01:42:40 +0200
committerTeddy Wing2021-08-29 01:46:34 +0200
commit05b741a6147fdbb89b5bdffb2e3e1090e1df9d34 (patch)
treebdc067def9b3b3dc2107c1880f9604c3a0d7777c
parent16e297f319d45f34bc5142236ab9f3e81109d4b6 (diff)
downloadreadline-incdec-05b741a6147fdbb89b5bdffb2e3e1090e1df9d34.tar.bz2
Remove pos.pl
No longer need this test file.
-rw-r--r--pos.pl11
1 files changed, 0 insertions, 11 deletions
diff --git a/pos.pl b/pos.pl
deleted file mode 100644
index f9c365f..0000000
--- a/pos.pl
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env perl -w
-
-use strict;
-
-my $test = 'test 12 0 45';
-
-$test =~ /(\d+)/g;
-pos($test) = 7;
-$test =~ s/\G([^\d]*)(\d+)/$1 . ($2 + 1)/e;
-
-print "$test\n";