aboutsummaryrefslogtreecommitdiffstats
path: root/test/readall1.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/readall1.awk')
-rw-r--r--test/readall1.awk10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/readall1.awk b/test/readall1.awk
new file mode 100644
index 00000000..2888d157
--- /dev/null
+++ b/test/readall1.awk
@@ -0,0 +1,10 @@
+BEGIN {
+ x = 5.9
+ y = 3
+ z = -2.327
+ zebra[0] = "apple"
+ zebra["archie"] = "banana"
+ zebra[3]["foo"] = "bar"
+ zebra[3]["bar"] = "foo"
+ print writeall(ofile)
+}