aboutsummaryrefslogtreecommitdiffstats
path: root/extension/testarrayparm.awk
diff options
context:
space:
mode:
Diffstat (limited to 'extension/testarrayparm.awk')
-rw-r--r--extension/testarrayparm.awk10
1 files changed, 0 insertions, 10 deletions
diff --git a/extension/testarrayparm.awk b/extension/testarrayparm.awk
deleted file mode 100644
index 08178f3e..00000000
--- a/extension/testarrayparm.awk
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/awk -f
-
-BEGIN {
- extension("./arrayparm.so", "dlload")
-
- mkarray(newvar, "hi", "hello")
-
- for (i in newvar)
- printf ("newvar[\"%s\"] = \"%s\"\n", i, newvar[i])
-}