[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Eric Cooper <ecc@c...> |
| Subject: | Re: [Caml-list] Reference to undefined global `Mysql' |
On Fri, Sep 21, 2007 at 10:27:26AM +0200, Julien Moutinho wrote:
> % ocaml unix.cma
> Objective Caml version 3.10.1+dev0 (2007-05-21)
>
> # open Unix;;
> # time ();;
> - : float = 1190362793.
Or, if you're already in a toplevel and discover you need a module:
$ ocaml
Objective Caml version 3.10.0
# Unix.time ();;
Reference to undefined global `Unix'
# #load "unix.cma";;
# Unix.time ();;
- : float = 1190386792.
--
Eric Cooper e c c @ c m u . e d u