我用opam安装了绳子并确认它可用:
rope 0.5 Ropes ("heavyweight strings")
但如何加载? The documentation表示我应该使用#load "rope.cma";;
,但这会给我留言Cannot find file rope.cma.
有人可以告诉我装载它的咒语是什么?
答案 0 :(得分:3)
要将rope
加载到交互式会话中,请使用topfind
# #use "topfind";;
# #require "rope";;
使用rope
ocamlbuild -pkg rope your_program.native
或者
ocamlfind ocamlopt -package rope your_program.ml -o your_program