ocaml中的未绑定模块图形

时间:2015-10-17 14:43:24

标签: graphics ocaml

我使用ocaml toplevel并使用:

#load "graphics.cma";;

图书馆已经加载了,但是在我尝试的时候:

open Graphics;;

我得到了无限制的模块图形错误。 我使用#list列出所有包和"图形"列表中有。 我已经看到了所有相关的答案,但仍然不知道为什么我得到这个 错误。

1 个答案:

答案 0 :(得分:0)

我不知道您的代码段中的符号**是什么意思,是否您尝试使用某种标记,但是这些符号不应该存在:

# #load "graphics.cma";;
# open Graphics;;
# open_graph "";;
- : unit = ()
# 

确保您输入此指令(# - 包括):#load "graphics.cma";;

如果仍然无效,您可以尝试#require "graphics";;。顺便说一下,这是在现代OCaml中加载库和包的首选方法。