|
|
|
|
|
by andrepd
2642 days ago
|
|
You can write floating point operators in several different ways. You can write with the normal floating point operators x *. y +. z
or, since `Float.(+) = (+.)`, `Float.() = (.)`, etc, let open Float in
x * y + z
or simply Float.(x * y + z)
|
|