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