From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail1-relais-roc.national.inria.fr (mail1-relais-roc.national.inria.fr [192.134.164.82]) by sympa.inria.fr (Postfix) with ESMTPS id 3BBB87ED7A for ; Sat, 1 Sep 2012 16:04:01 +0200 (CEST) Received-SPF: None (mail1-smtp-roc.national.inria.fr: no sender authenticity information available from domain of p.donadeo@gmail.com) identity=pra; client-ip=209.85.214.182; receiver=mail1-smtp-roc.national.inria.fr; envelope-from="p.donadeo@gmail.com"; x-sender="p.donadeo@gmail.com"; x-conformance=sidf_compatible Received-SPF: Pass (mail1-smtp-roc.national.inria.fr: domain of p.donadeo@gmail.com designates 209.85.214.182 as permitted sender) identity=mailfrom; client-ip=209.85.214.182; receiver=mail1-smtp-roc.national.inria.fr; envelope-from="p.donadeo@gmail.com"; x-sender="p.donadeo@gmail.com"; x-conformance=sidf_compatible; x-record-type="v=spf1" Received-SPF: None (mail1-smtp-roc.national.inria.fr: no sender authenticity information available from domain of postmaster@mail-ob0-f182.google.com) identity=helo; client-ip=209.85.214.182; receiver=mail1-smtp-roc.national.inria.fr; envelope-from="p.donadeo@gmail.com"; x-sender="postmaster@mail-ob0-f182.google.com"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoIBAJQUQlDRVda2kGdsb2JhbAArGoYFtRMIIgEBAQEJCQ0HFAQjgiIBBQEBDwIPHQEbHgMSEA8CJgICIgERAQUBIQEBNIdbAQMMCyqcEQkDi1RPgnOEVAoZJw1ZiHMBBQyBFY99gRIDlVmBFI0oPoQF X-IronPort-AV: E=Sophos;i="4.80,351,1344204000"; d="scan'208";a="171521391" Received: from mail-ob0-f182.google.com ([209.85.214.182]) by mail1-smtp-roc.national.inria.fr with ESMTP/TLS/RC4-SHA; 01 Sep 2012 16:04:00 +0200 Received: by obbun3 with SMTP id un3so13691160obb.27 for ; Sat, 01 Sep 2012 07:03:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=FSWF4ri5BsUcpVID7NCfKQtpRt/iKJCM2NZORGOUwf4=; b=Hcr36nMATgUw1kg4J64ZBPlnLiuOhSSlTSYzafEjIYjA3g+Bj0B6oVHWAIEMRwxsmd GYsh3xSQGmrvcO1XP4yxb+xj7j/nJ+qvMamjc/SiMNJq3i9/NVQNdCtE+amNipVeplyc SZd7ak/jphiM0kxzFt/7BiBv4owIeOR/tMPx86Wt6Xt+4AR2z6X8NfOyygFl3t9GWWU1 2g/NBTxyZ3gtZLpFNohYJIxfHOq/A+CSlTGG/p+ZIa0lj6gvkaCIaGmW5sxqgVG6IdJZ kj9WZERawfxHhq+H/aEEQOIfuu+uW7O4K92pKjTOY6OOVpIo366vcnQSnxXizcVFz/xe UepQ== Received: by 10.60.172.135 with SMTP id bc7mr10213308oec.127.1346508239259; Sat, 01 Sep 2012 07:03:59 -0700 (PDT) MIME-Version: 1.0 Received: by 10.60.54.37 with HTTP; Sat, 1 Sep 2012 07:03:18 -0700 (PDT) From: Paolo Donadeo Date: Sat, 1 Sep 2012 16:03:18 +0200 Message-ID: To: OCaml mailing list , OCaml-Lua devel ML , Lua mailing list Content-Type: text/plain; charset=UTF-8 Subject: [Caml-list] [ANN] ocaml-lua v1.0: OCaml binding of Lua library I'm happy to announce the first release of ocaml-lua, the OCaml binding of the Lua library. With ocaml-lua you can embed a Lua interpreter in an OCaml program in a few lines of code, and use Lua for configuration or customization purposes. Here are some references: The homepage of the project is hosted on OCaml Forge: http://ocaml-lua.forge.ocamlcore.org/ The complete library reference (ocamldoc generated) is here: http://ocaml-lua.forge.ocamlcore.org/api-lua/ Source tarballs are on the download page on OCaml Forge: http://forge.ocamlcore.org/frs/?group_id=167 The official GIT repository is here: http://forge.ocamlcore.org/scm/browser.php?group_id=167 Bug reports and feature requests are on my page on GitHub: https://github.com/pdonadeo/ocaml-lua/issues I hope it could be useful. -- Paolo