Re: Referencing symbols in different files
Pankrath <[email protected]>
| Newsgroups | gmane.comp.lang.ocaml.beginners |
|---|---|
| Message-ID | <1826528.0bS75F2zIT@akela> |
> > # #load "token.cmo";; > > The directive loads byte-compiled code, ".cmo" stands for module code and > ".cma" stands for library code (a set of modules). You need to compile " > token.ml" first. Thank you, it works now.