* Fri Feb 6 2009 Richard W.M. Jones <rjones@redhat.com> - 1.4.4-1
[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) ;;