aboutsummaryrefslogtreecommitdiffstats
path: root/test/id.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/id.awk')
-rw-r--r--test/id.awk11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/id.awk b/test/id.awk
new file mode 100644
index 00000000..2a35e42c
--- /dev/null
+++ b/test/id.awk
@@ -0,0 +1,11 @@
+function function1()
+{
+ print "function1"
+}
+
+BEGIN {
+ an_array[1] = 1
+
+ for (i in PROCINFO["identifiers"])
+ printf("%s -> %s\n", i, PROCINFO["identifiers"][i])
+}