gpt4 book ai didi

http - Ocaml : How compile a file using the module Http_Client. 方便吗?

转载 作者:可可西里 更新时间:2023-11-01 17:08:51 28 4
gpt4 key购买 nike

我正在尝试使用 Http_Client.Convenience 模块编译一个文件(他的文档在这里:Http_Client.Convenience

我有文件 foo.ml :

let result = Http_client.Convenience.http_put "Foo"

我正在用这种方式编译:

ocamlfind ocamlopt  -o foo -linkpkg -package netclient foo.ml

根据本网站Objective Caml ,此行应该编译时不会出现以下错误:“Unbound module Http_client”。

我的编译指令有什么问题?

最佳答案

这是对我有用的:

(* This is curried since http_put takes 2 string and we are only giving 1 
val Nethttp_client.Convenience.http_put string -> string -> string *)

let result = Nethttp_client.Convenience.http_put "Foo"


ocamlfind ocamlc foo.ml -package netclient -linkpkg -o Foo

你也可以这样做

    (* This is foo.ml *)
open Nethttp_client
let result = Convenience.http_put "Foo"

然后在命令行上:

   ocamlfind ocamlc foo.ml -package netclient -linkpkg -o Foo

关于http - Ocaml : How compile a file using the module Http_Client. 方便吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28835950/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com