我在 OCaml 中有以下代码:
open Lwt
open Lwt_term
let () = Lwt_main.run (
lwt l = Lwt_read_line.read_line ~prompt:[text "foo> "] ())
当我尝试使用编译时
ocamlfind ocamlc -package lwt cli.ml - o cli.byte
我收到以下错误:
File "cli.ml", line 2, characters 0-13:
Error: Unbound module Lwt_term
我知道这与上面的问题无关,但是从 utop 我可以打开 Lwt 但我仍然无法打开 Lwt_term。我究竟做错了什么?