From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.1.3 X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by yquem.inria.fr (Postfix) with ESMTP id 0FEECBC6B for ; Fri, 21 Sep 2007 16:59:28 +0200 (CEST) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgAAAJt480aAArkpn2dsb2JhbACBWoxCAgEBBwQGBwgY X-IronPort-AV: E=Sophos;i="4.20,284,1186351200"; d="scan'208";a="3045313" Received: from unknown (HELO chokecherry.srv.cs.cmu.edu) ([128.2.185.41]) by mail3-smtp-sop.national.inria.fr with ESMTP; 21 Sep 2007 17:00:54 +0200 Received: from stratocaster.home (c-71-206-252-35.hsd1.pa.comcast.net [71.206.252.35]) (authenticated bits=0) by chokecherry.srv.cs.cmu.edu (8.13.6/8.13.6) with ESMTP id l8LF0nG9015520 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Fri, 21 Sep 2007 11:00:49 -0400 (EDT) Received: from ecc by stratocaster.home with local (Exim 4.67) (envelope-from ) id 1IYjzt-0007i9-Dm for caml-list@yquem.inria.fr; Fri, 21 Sep 2007 11:00:49 -0400 Date: Fri, 21 Sep 2007 11:00:49 -0400 From: Eric Cooper To: caml-list@yquem.inria.fr Subject: Re: [Caml-list] Reference to undefined global `Mysql' Message-ID: <20070921150049.GB29271@stratocaster.home> Mail-Followup-To: caml-list@yquem.inria.fr References: <7318da040709210042s411a351h82cc4fec818d7c28@mail.gmail.com> <20070921082726.GA20454@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070921082726.GA20454@localhost> User-Agent: Mutt/1.5.16 (2007-06-11) X-Spam: no; 0.00; 0200,:01 ocaml:01 toplevel:01 ocaml:01 unix':01 wrote:01 unix:01 unix:01 caml-list:01 undefined:01 undefined:01 cma:01 cma:01 caml:02 caml:02 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