aboutsummaryrefslogtreecommitdiffstats
path: root/test/mpfrrem.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-08-12 05:56:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-08-12 05:56:45 +0300
commita9298670aee293adad4693604b6b92cac8139d9f (patch)
treeede9b1e047814bb12179920a6b496ec8b20e7d65 /test/mpfrrem.awk
parent01f1baef24748e4741572fbd7ed8a1dce522fe95 (diff)
parent6b9d87b595278e606096018ea16615033c5571fe (diff)
downloadegawk-a9298670aee293adad4693604b6b92cac8139d9f.tar.gz
egawk-a9298670aee293adad4693604b6b92cac8139d9f.tar.bz2
egawk-a9298670aee293adad4693604b6b92cac8139d9f.zip
Merge branch 'master' into cmake
Diffstat (limited to 'test/mpfrrem.awk')
-rw-r--r--test/mpfrrem.awk6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/mpfrrem.awk b/test/mpfrrem.awk
new file mode 100644
index 00000000..fd8bc4d5
--- /dev/null
+++ b/test/mpfrrem.awk
@@ -0,0 +1,6 @@
+BEGIN {
+ print "15 % 7 =", 15 % 7
+ print "15 % -7 =", 15 % -7
+ print "-15 % 7 =", -15 % 7
+ print "-15 % -7 =", -15 % -7
+}