如何在ocaml中导入和使用新模块?

时间:2011-12-15 06:39:22

标签: string import module ocaml

我无法使用模块Extstring。

1 个答案:

答案 0 :(得分:5)

如果您正在运行顶层,则需要在其路径中包含exstring.cmo(简单的方法是在与ocaml相同的目录中运行extstring.cmo)。然后,你可以这样做:

# #load "extstring.cmo";;
# Extstring.split "a.b" '.' 2;;
[..]