aboutsummaryrefslogtreecommitdiffstats
path: root/a.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-04-03 09:15:47 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-04-03 09:15:47 +0300
commit448c45412600cd9844caf2336f5bf6c459145d08 (patch)
treea14ba06e9823772f97cd7f6e1e4429f9798864bf /a.awk
parent8d0b9648204d05537828e70ee1816834dc3b1d34 (diff)
downloadegawk-448c45412600cd9844caf2336f5bf6c459145d08.tar.gz
egawk-448c45412600cd9844caf2336f5bf6c459145d08.tar.bz2
egawk-448c45412600cd9844caf2336f5bf6c459145d08.zip
Add some test file for use during development.
Diffstat (limited to 'a.awk')
-rw-r--r--a.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/a.awk b/a.awk
new file mode 100644
index 00000000..daed9d9f
--- /dev/null
+++ b/a.awk
@@ -0,0 +1,7 @@
+BEGIN {
+ f = "foo"
+ p = "o+"
+ fun = "match"
+ @fun(f, p)
+ print RSTART, RLENGTH
+}