From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id PAA26463; Tue, 27 Aug 2002 15:54:19 +0200 (MET DST) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id PAA26451 for ; Tue, 27 Aug 2002 15:54:18 +0200 (MET DST) Received: from mel-rto3.wanadoo.fr (smtp-out-3.wanadoo.fr [193.252.19.233]) by concorde.inria.fr (8.11.1/8.11.1) with ESMTP id g7RDsHf06445 for ; Tue, 27 Aug 2002 15:54:17 +0200 (MET DST) Received: from mel-rta9.wanadoo.fr (193.252.19.69) by mel-rto3.wanadoo.fr (6.5.007) id 3D49FC7D009D6C3B; Tue, 27 Aug 2002 15:54:09 +0200 Received: from warp (80.15.42.179) by mel-rta9.wanadoo.fr (6.5.007) id 3D49FFB7009597E0; Tue, 27 Aug 2002 15:54:09 +0200 Message-ID: <002301c24dd1$3f305170$0700a8c0@warp> From: "Nicolas Cannasse" To: "Kontra, Gergely" , "OCaml" References: Subject: Re: [Caml-list] Osiris - gtk Date: Tue, 27 Aug 2002 15:54:21 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk > # open Osiris;; > # let wnd=new_window();; > Reference to undefined global `Osiris' > # Stack.create();; > - : '_a Stack.t = > # > > The last line is to show, that ocaml can find the libraries. It does. You simply forgot the following : # #load "osiris.cma" which must be called prior to opening Osiris. After creating the wnd , don't forget : wnd#visible true;; if you want to see it :) Nicolas Cannasse ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners