diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2012-05-26 10:44:07 -0400 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2012-05-26 10:44:07 -0400 |
commit | 62d890d4384a70c7550876c617b3a34e28dab234 (patch) | |
tree | 3856ee16d1b365d2810539e78f8f23cbf0a98255 /test/ordchr.awk | |
parent | eec7101174a3b2807fb282272f75cc13d4b953c3 (diff) | |
download | egawk-62d890d4384a70c7550876c617b3a34e28dab234.tar.gz egawk-62d890d4384a70c7550876c617b3a34e28dab234.tar.bz2 egawk-62d890d4384a70c7550876c617b3a34e28dab234.zip |
Install gawkapi.h, fix is_off_limits_var, and enhance ordchr test.
Diffstat (limited to 'test/ordchr.awk')
-rw-r--r-- | test/ordchr.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ordchr.awk b/test/ordchr.awk index abb793a0..0295105e 100644 --- a/test/ordchr.awk +++ b/test/ordchr.awk @@ -2,4 +2,9 @@ BEGIN { print chr(ord("A")) + print chr(ord("0")) + print ord(chr(65)) + # test if type conversion between strings and numbers is working properly + print chr(ord(0)) + print ord(chr("65")) } |