1
我有這樣的代碼OCaml的異步編譯
open Async.Std;;
let() = print_string "Hello World\n";;
和編譯
ocamlfind ocamlopt -linkpkg -package async -thread ./hello.ml
stdout是空的......但是,如果代碼只是
let() = print_string "Hello World\n";;
和編譯命令
ocamlfind ocamlopt -linkpkg -package async -thread ./hello.ml
我在標準輸出我的「你好世界」。我做錯了什麼?爲什麼第一個例子不工作?