diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-17 12:38:04 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-08-17 12:38:04 +0300 |
commit | e6b05afd9971b457c0b46907a91185b66be8ff4e (patch) | |
tree | e7d3b6fce47a2ac7b32cdf923ceb6e50db9fe441 /extension/testarrayparm.awk | |
parent | 3b23e177cd166e96c700379491b4a99bddf9aa4d (diff) | |
parent | 76cc4d241f328876b18e48639d631823c3d304d6 (diff) | |
download | egawk-e6b05afd9971b457c0b46907a91185b66be8ff4e.tar.gz egawk-e6b05afd9971b457c0b46907a91185b66be8ff4e.tar.bz2 egawk-e6b05afd9971b457c0b46907a91185b66be8ff4e.zip |
Merge branch 'extgawk'
Diffstat (limited to 'extension/testarrayparm.awk')
-rw-r--r-- | extension/testarrayparm.awk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/extension/testarrayparm.awk b/extension/testarrayparm.awk deleted file mode 100644 index 08178f3e..00000000 --- a/extension/testarrayparm.awk +++ /dev/null @@ -1,10 +0,0 @@ -#! /bin/awk -f - -BEGIN { - extension("./arrayparm.so", "dlload") - - mkarray(newvar, "hi", "hello") - - for (i in newvar) - printf ("newvar[\"%s\"] = \"%s\"\n", i, newvar[i]) -} |