New patches from Fedora.
[fedora-mingw.git] / ocaml / test_float2.ml
1 (* Another float/int conversion problem or difference. *)
2
3 open Printf ;;
4
5 printf "%d\n" (int_of_float (62.05 *. 60.)) ;;
6 let s = 62.05 *. 60. ;;
7 printf "%d\n" (int_of_float s) ;;