summaryrefslogtreecommitdiff
path: root/gnu/dist/gawk/test/arrayref.awk
diff options
context:
space:
mode:
authorjdolecek <jdolecek@NetBSD.org>2004-03-26 17:16:24 +0000
committerjdolecek <jdolecek@NetBSD.org>2004-03-26 17:16:24 +0000
commit0c4ea4cbc71acb15c231028ac6363473ecf29621 (patch)
tree91b4c7bf491ec8a639e22914f066f23441eb381e /gnu/dist/gawk/test/arrayref.awk
parent945c30f4abe102fcc8f1cb32e13335809f39056e (diff)
delete GNU gawk 3.1.3 sources. they are available in cvs with
"cvs co -r gawk-3-1-3-before-remove src/gnu/dist/gawk".
Diffstat (limited to 'gnu/dist/gawk/test/arrayref.awk')
-rw-r--r--gnu/dist/gawk/test/arrayref.awk13
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/dist/gawk/test/arrayref.awk b/gnu/dist/gawk/test/arrayref.awk
deleted file mode 100644
index 144d41a0687..00000000000
--- a/gnu/dist/gawk/test/arrayref.awk
+++ /dev/null
@@ -1,13 +0,0 @@
- BEGIN { # foo[10] = 0 # put this line in and it will work
- test(foo); print foo[1]
- test2(foo2); print foo2[1]
- }
-
- function test(foo)
- {
- test2(foo)
- }
- function test2(bar)
- {
- bar[1] = 1
- }