aboutsummaryrefslogtreecommitdiffstats
path: root/test/paramasfunc1.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/paramasfunc1.awk')
-rw-r--r--test/paramasfunc1.awk9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/paramasfunc1.awk b/test/paramasfunc1.awk
new file mode 100644
index 00000000..b0d06849
--- /dev/null
+++ b/test/paramasfunc1.awk
@@ -0,0 +1,9 @@
+BEGIN{ X() }
+
+function X( abc)
+{
+ abc = "stamp out "
+ print abc abc()
+}
+
+function abc() { return "dark corners" }