diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 13:14:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 13:14:38 +0300 |
commit | fae4762eba9ff7bb466a600130e9c90eaac6b0bc (patch) | |
tree | 62711fe7cd511824b5f8a90ba1ba7b523d42e127 /extension/testordchr.awk | |
parent | bc70de7b3302d5a81515b901cae376b8b51d2004 (diff) | |
download | egawk-fae4762eba9ff7bb466a600130e9c90eaac6b0bc.tar.gz egawk-fae4762eba9ff7bb466a600130e9c90eaac6b0bc.tar.bz2 egawk-fae4762eba9ff7bb466a600130e9c90eaac6b0bc.zip |
Move to gawk-3.1.1.
Diffstat (limited to 'extension/testordchr.awk')
-rw-r--r-- | extension/testordchr.awk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/extension/testordchr.awk b/extension/testordchr.awk new file mode 100644 index 00000000..64e53d16 --- /dev/null +++ b/extension/testordchr.awk @@ -0,0 +1,6 @@ +BEGIN { + extension("./ordchr.so", "dlload") + + print "ord(\"a\") is", ord("a") + print "chr(65) is", chr(65) +} |