diff options
author | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2018-02-07 14:16:47 -0500 |
---|---|---|
committer | Andrew J. Schorr <aschorr@telemetry-investments.com> | 2018-02-07 14:16:47 -0500 |
commit | f9ff7769b7b38973bf7447b8ca596435ccf77b67 (patch) | |
tree | 28313e5d0755e3e10c10619edcc660202a0dd8fe /test/uplus.awk | |
parent | 9b4b32b5911b9d51643d2efd6c646f17e5214c03 (diff) | |
download | egawk-f9ff7769b7b38973bf7447b8ca596435ccf77b67.tar.gz egawk-f9ff7769b7b38973bf7447b8ca596435ccf77b67.tar.bz2 egawk-f9ff7769b7b38973bf7447b8ca596435ccf77b67.zip |
Fix bug printing +"01" in regular and MPFR mode.
Diffstat (limited to 'test/uplus.awk')
-rw-r--r-- | test/uplus.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/uplus.awk b/test/uplus.awk new file mode 100644 index 00000000..3220f7fd --- /dev/null +++ b/test/uplus.awk @@ -0,0 +1,5 @@ +BEGIN { + print "01" + 0 + print +"01" + print -"01" +} |