This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
なぜ Lwt print 関数Lwt_io.printに type が
あるのか混乱していますが、string -> unit Lwt.t
実行Lwt_io.print "a" >>= fun () -> Lwt_io.print "b";;すると "ab" が出力され、type unit が返されます。
Lwt_io.print は unit ではなく unit Lwt.t を返すため、これは型エラーになると思います。スレッドの 2 番目の部分が呼び出されるのはなぜですか?