diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-05 12:56:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-10-05 12:56:31 +0200 |
commit | bcb0224f8f2d19cd03a2527eec2f5eb42abef7cd (patch) | |
tree | 674e7412188b1c7fb6decd02575e70f0d74247b6 /test/functab4.awk | |
parent | 5caf2424094016b9a26c5d9d74b25cab39671478 (diff) | |
parent | 81896b422307105edb9908958bbedd09967d9a05 (diff) | |
download | egawk-bcb0224f8f2d19cd03a2527eec2f5eb42abef7cd.tar.gz egawk-bcb0224f8f2d19cd03a2527eec2f5eb42abef7cd.tar.bz2 egawk-bcb0224f8f2d19cd03a2527eec2f5eb42abef7cd.zip |
Merge branch 'symtab'
Diffstat (limited to 'test/functab4.awk')
-rw-r--r-- | test/functab4.awk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/functab4.awk b/test/functab4.awk new file mode 100644 index 00000000..0d9d4267 --- /dev/null +++ b/test/functab4.awk @@ -0,0 +1,14 @@ +@load "filefuncs" + +function foo() +{ + print "foo!" +} + +BEGIN { + x = FUNCTAB["chdir"] + print "x =", x + @x("/tmp") + printf "we are now in --> " + system("/bin/pwd || /usr/bin/pwd") +} |