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 discorde.inria.fr (discorde.inria.fr [192.93.2.38]) by yquem.inria.fr (Postfix) with ESMTP id 5D906BC0A for ; Mon, 19 Feb 2007 17:00:06 +0100 (CET) Received: from postar.fmf.uni-lj.si (vega.fmf.uni-lj.si [193.2.67.45]) by discorde.inria.fr (8.13.6/8.13.6) with ESMTP id l1JG05Bs007529 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 19 Feb 2007 17:00:06 +0100 Received: from localhost (unknown [192.168.5.1]) by postar.fmf.uni-lj.si (Postfix) with ESMTP id 5F77710FFB2 for ; Mon, 19 Feb 2007 17:00:05 +0100 (CET) X-Virus-Scanned: amavisd-new at spam.fmf.uni-lj.si Received: from postar.fmf.uni-lj.si ([192.168.5.5]) by localhost (spam.fmf.uni-lj.si [192.168.5.1]) (amavisd-new, port 10024) with ESMTP id e0ikdnxdyUuk for ; Mon, 19 Feb 2007 17:14:19 +0100 (CET) Received: from [193.2.67.88] (unknown [193.2.67.88]) by postar.fmf.uni-lj.si (Postfix) with ESMTP id 31FA810FFAF for ; Mon, 19 Feb 2007 17:00:05 +0100 (CET) Message-ID: <45D9CA6E.8020008@fmf.uni-lj.si> Date: Mon, 19 Feb 2007 17:03:58 +0100 From: Andrej Bauer Reply-To: Andrej.Bauer@andrej.com User-Agent: Icedove 1.5.0.9 (X11/20061220) MIME-Version: 1.0 To: caml-list@inria.fr Subject: Re: RE : [Caml-list] empty type References: <000001c75431$8ab2e8e0$c09ec781@mathiasens> In-Reply-To: <000001c75431$8ab2e8e0$c09ec781@mathiasens> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Miltered: at discorde with ID 45D9C985.000 by Joe's j-chkmail (http://j-chkmail . ensmp . fr)! X-Spam: no; 0.00; andrej:01 andrej:01 redefined:01 mathias:98 wrote:01 constructor:01 caml-list:01 int:01 int:01 bauer:09 bauer:09 although:09 fmf:86 but:14 type:14 Mathias Kende wrote: > It's not a type, but just a valid name for a constructor that can be > redefined if necessary (although one surely does not want to do so). Way cool: # type t = () of int * int ;; type t = () of int * int # () (3, 4) ;; - : t = () (3, 4) Andrej