aboutsummaryrefslogtreecommitdiffstats
path: root/test/typedregex4.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-11-24 20:25:48 +0200
committerArnold D. Robbins <arnold@skeeve.com>2018-11-24 20:25:48 +0200
commitd5724bb61af6f7c3d3b491612cbd0bcc05f5d056 (patch)
tree86d6678a12c6a6d37a5c5f46417d4da461c704d4 /test/typedregex4.awk
parent5f60e83a43df739f1dd02c4f7601148f3c9006ab (diff)
parentac2ff45364ab20c1a2bc82f779738f33f90808dd (diff)
downloadegawk-d5724bb61af6f7c3d3b491612cbd0bcc05f5d056.tar.gz
egawk-d5724bb61af6f7c3d3b491612cbd0bcc05f5d056.tar.bz2
egawk-d5724bb61af6f7c3d3b491612cbd0bcc05f5d056.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'test/typedregex4.awk')
-rw-r--r--test/typedregex4.awk7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/typedregex4.awk b/test/typedregex4.awk
new file mode 100644
index 00000000..8e866c34
--- /dev/null
+++ b/test/typedregex4.awk
@@ -0,0 +1,7 @@
+BEGIN {
+ print "typeof(x) =", typeof(x)
+}
+
+END {
+ print "typeof(y) =", typeof(y)
+}