Le Tue, 31 Jul 2007 18:55:05 +0200, Gabriel Kerneis a écrit : > ~/ocaml/camlp4% cat test_bind.ml > let r = (Lwt_unix.sleep 5) foo (print_endline "42") Careful readers will notice that I should have had written: let r = (Lwt_unix.sleep 5) foo (Lwt.return (print_endline "42")) But it doesn't change anything, of course. -- Gabriel