OCaml筆記

出自Tan Kian-ting的維基
於 2022年3月26日 (六) 16:38 由 Tankianting討論 | 貢獻 所做的修訂
跳至導覽 跳至搜尋

在 repl 模式匯入其他程式碼

命令行

在命令行輸入 ocaml ,輸入

# use "another_mode.ml"

編譯時

另外如果要引用其他的程式碼,把所有程式碼放在目錄中,成爲:

Folder
 ├── a.ml
 └── b.ml

在 a.ml 內引用 b.ml 的內容:

_ = B.foo x

編譯時:

ocamlopt -c a.ml
ocamlopt -c b.ml
ocamlopt -o a a.cmx b.cmx

參考