summaryrefslogtreecommitdiff
path: root/test/functab2.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/functab2.awk')
-rw-r--r--test/functab2.awk8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/functab2.awk b/test/functab2.awk
new file mode 100644
index 00000000..9a07dfc3
--- /dev/null
+++ b/test/functab2.awk
@@ -0,0 +1,8 @@
+function foo()
+{
+ print "foo!"
+}
+
+BEGIN {
+ FUNCTAB["a"] = "something"
+}