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