From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by yquem.inria.fr (Postfix) with ESMTP id DC034BCAF for ; Thu, 16 Jun 2005 23:33:00 +0200 (CEST) Received: from pauillac.inria.fr (pauillac.inria.fr [128.93.11.35]) by concorde.inria.fr (8.13.0/8.13.0) with ESMTP id j5GLX0i6003900 for ; Thu, 16 Jun 2005 23:33:00 +0200 Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id XAA17655 for ; Thu, 16 Jun 2005 23:33:00 +0200 (MET DST) Received: from tcs.inf.tu-dresden.de (tcs.inf.tu-dresden.de [141.76.75.101]) by nez-perce.inria.fr (8.13.0/8.13.0) with ESMTP id j5GLWx3O015785 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Thu, 16 Jun 2005 23:32:59 +0200 Received: from ithif59.inf.tu-dresden.de (ithif59 [141.76.75.59]) by tcs.inf.tu-dresden.de (8.12.9/8.12.9) with ESMTP id j5GLWuxA013503 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NOT) for ; Thu, 16 Jun 2005 23:32:58 +0200 (MET DST) Received: from tews by ithif59.inf.tu-dresden.de with local (Exim 4.50) id 1Dj1yp-0003Dd-Te for caml-list@inria.fr; Thu, 16 Jun 2005 23:32:55 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17073.61447.865948.233312@ithif59.inf.tu-dresden.de> Date: Thu, 16 Jun 2005 23:32:55 +0200 To: caml-list@inria.fr Subject: Quotation System in Original Syntax X-Mailer: VM 7.19 under Emacs 21.4.1 From: Hendrik Tews X-Scanned-By: MIMEDefang 2.33 (www . roaringpenguin . com / mimedefang) at tcs.inf.tu-dresden.de X-Miltered: at concorde with ID 42B1F00C.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Miltered: at nez-perce with ID 42B1F00B.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; syntax:01 hendrik:01 tews:01 tews:01 syntax:01 ocaml:01 mlast:01 lgpl:01 mlast:01 expr:01 expr:01 val:01 val:01 hendrik:01 ...:98 X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on yquem.inria.fr X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.0.2 X-Spam-Level: Dear all, I would like to announce the first public release of a Quotation System in Original Syntax for Ocaml Abstract Syntax Trees Eventually this package should provide an alternative to q_MLast for those of us that are not fluent in the revised syntax. Please visit http://wwwtcs.inf.tu-dresden.de/~tews/ocamlp4 for more details and download links. Status: preliminary (only core language, no modules, no classes ...) Kind: Camlp4 extension Home: http://wwwtcs.inf.tu-dresden.de/~tews/ocamlp4 License: GNU LGPL version 2 (forced by Camlp4 license) Example: with the provided module qo_MLast you can write <:expr< flag := not !flag; record.field <- 2 >> instead of <:expr< do { flag.val := not flag.val; record.field := 2 >> Enjoy, Hendrik Tews