vxx2 / vlib / v / checker / tests / float_modulo_err.vv
4 lines · 4 sloc · 64 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn main() {
2 println(3.0 % 2.0)
3 println(f32(3.0) % f32(2.0))
4}
5