Ocaml で lwt モジュールを使用しようとしています
%cat .ocamlinit
#use "topfind";;
#require "lwt.simple-top";;
#require "lwt.syntax";;
#require "findlib";;
#require "num.core";;
#load "nums.cma";;
#load "unix.cma";;
#camlp4o;;
open Lwt;;
open Lwt_io;;
このコマンドを使用して Lwt API を使用して「ocamlbuild -use-ocamlfind myFile.native」をビルドしようとすると、
次のエラーが表示されます:「エラー: Unbound module Lwt」
端末に %ocaml と入力すると、正常に読み込まれ、Lwt.API を使用できます
何が起こっている?なにか提案を?