blob: a317ca79f03d9a87ecdb98a6501e60fbcbdcb3dc (
plain)
1
2
3
4
5
6
7
8
9
10
|
const expect = @import("std").testing.expect;
test "@round" {
try expect(@round(1.4) == 1);
try expect(@round(1.5) == 2);
try expect(@round(-1.4) == -1);
try expect(@round(-2.5) == -3);
}
// test
|