michael@0: // vim: set ts=8 sts=4 et sw=4 tw=99: michael@0: function f_int(x, y) { michael@0: return x - y; michael@0: } michael@0: function f_double(x, y) { michael@0: return x - y; michael@0: } michael@0: michael@0: for (var i = 0; i < 1000; i++) { michael@0: assertEq(f_int(5, 3), 2); michael@0: assertEq(f_int(3, 5), -2); michael@0: assertEq(f_int(-2147483648, 1), -2147483649); michael@0: } michael@0: michael@0: michael@0: for (var i = 0; i < 1000; i++) { michael@0: assertEq(f_double(5.5, 3.2), 2.3); michael@0: assertEq(f_double(2.5, 3.0), -0.5); michael@0: } michael@0: