summaryrefslogtreecommitdiff
path: root/test/mpfrrem.awk
blob: fd8bc4d5ed947bc49f0e27e2fe6134476bee363f (plain)
1
2
3
4
5
6
BEGIN {
	print "15 % 7 =", 15 % 7
	print "15 % -7 =", 15 % -7
	print "-15 % 7 =", -15 % 7
	print "-15 % -7 =", -15 % -7
}