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 KAA19538; Sun, 24 Oct 2004 10:54:03 +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 KAA20233 for ; Sun, 24 Oct 2004 10:54:02 +0200 (MET DST) X-SPAM-Warning: Sending machine is listed in blackholes.five-ten-sg.com Received: from mail-in-01.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) by concorde.inria.fr (8.13.0/8.13.0) with ESMTP id i9O8s1jF029646 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Sun, 24 Oct 2004 10:54:02 +0200 Received: from diebuntekuh.de (dialin-212-144-207-227.arcor-ip.net [212.144.207.227]) by mail-in-01.arcor-online.net (Postfix) with ESMTP id 1BF8D9D602 for ; Sun, 24 Oct 2004 10:54:01 +0200 (CEST) Received: by diebuntekuh.de (Postfix, from userid 500) id AF9EA608EC0; Sun, 24 Oct 2004 11:03:01 +0200 (CEST) To: OCaml List Subject: [Caml-list] Announce: Schoca-0.2.3 released From: Christoph Bauer Date: Sun, 24 Oct 2004 11:03:01 +0200 Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Miltered: at concorde with ID 417B6DA9.001 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Loop: caml-list@inria.fr X-Spam: no; 0.00; bauer:01 caml-list:01 mli:01 bauer:01 getenv:01 unset:01 vars:01 setenv:01 printf:01 printf:01 8.3:01 ocaml:01 rec:01 exception:02 string:03 Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk Hi Caml-list, Schoca is an implementation of the Scheme language. The primary purpose of Schoca is the use as an embedded extension language in OCaml applications. The new release 0.2.3 fixes a lot of bugs and the interpreter is now faster. scmTypes.mli lists all scheme-data specific functions. An init file for slib is included (example/schoca.init). (slib:report) works but not much more. This will be improved. The new location of Schoca's homepage is http://home.arcor.de/chr_bauer/schoca.html Have fun with functional programming, Christoph Bauer P.S.: Changes for 0.2.3 o (define (f) 1)-Bug is fixed o wrong parsing of a the string like "...\\" is fixed o no termination of schoca shell when an exception occurs o getenv returns #f on unset vars o a lot of string functions (which uses string_of_datum instead od string_of_scm_string) are fixed o (load (...)) is fixed (missing eval) o parsing of symbols (or numbers) starting with a dot (`.') is fixed o examples/schoca.init for slib is included (install slib 3a1, setenv SCHEME_LIBRARY_PATH run (load "schoca.init")) o cond bugs are fixed o scm_eval (evaluation of arguments) is fixed Changes for 0.2.2: o much faster function calls (ack.scm 8.3s -> 5.9s) Changes for 0.2.1 (not released) o Fix for eq? on numbers. o `truncate' is added o documentation for ScmTypes o some functions are renamed -- let () = let rec f a w i j = Printf.printf "%.20f\r" a; let a1 = a *. i /. j in if w then f a1 false (i +. 2.0) j else f a1 true i (j +. 2.0) in f 2.0 false 2.0 1.0 ------------------- 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