diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-07-04 05:41:05 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-07-04 05:41:05 +0300 |
commit | 414cd1eccff2d6d6415e1f65ac2e51e7c1b33890 (patch) | |
tree | ec23aa620134a1c949840c1c9e3294ba89a83a43 /test/printfchar.awk | |
parent | 093f27aa0d53494c257cf16a57b01ad43f70cdff (diff) | |
parent | ff4e0706c5ee5dffd69168ebd0ff5f53e474d048 (diff) | |
download | egawk-414cd1eccff2d6d6415e1f65ac2e51e7c1b33890.tar.gz egawk-414cd1eccff2d6d6415e1f65ac2e51e7c1b33890.tar.bz2 egawk-414cd1eccff2d6d6415e1f65ac2e51e7c1b33890.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test/printfchar.awk')
-rw-r--r-- | test/printfchar.awk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/printfchar.awk b/test/printfchar.awk new file mode 100644 index 00000000..9e703c31 --- /dev/null +++ b/test/printfchar.awk @@ -0,0 +1,7 @@ +BEGIN { + x[65] + for (i in x) { + # i should be a string + printf "%c\n", i # should print 1st char of string + } +} |