v/vlib/v/checker/tests/float_modulo_err.vv

5 lines
70 B
V

fn main() {
println(3.0 % 2.0)
println(f32(3.0) % f32(2.0))
}