From: Nicolas C. <war...@fr...> - 2004-04-27 07:12:08
|
> Dear all, > I am a new user of the Ocaml and I just installed > the lib. However, I got an error when I use the lib. > Would you please tell me how to solve it? > Thank you very much. > > Regards, > Yeting > > I input: > open DynArray;; > make;; > > I get: > Reference to undefined global DynArray Looks like you're working on the toplevel. You need first to do a : #load "extLib.cma" in order to load modules in memory. Regards, Nicolas Cannasse |