From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Delivered-To: caml-list@yquem.inria.fr Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by yquem.inria.fr (Postfix) with ESMTP id 8572EBC88 for ; Thu, 10 Feb 2005 03:10:28 +0100 (CET) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.198]) by nez-perce.inria.fr (8.13.0/8.13.0) with ESMTP id j1A2ARFv030258 for ; Thu, 10 Feb 2005 03:10:28 +0100 Received: by wproxy.gmail.com with SMTP id 69so377972wri for ; Wed, 09 Feb 2005 18:10:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:mime-version:content-type:content-transfer-encoding:x-mailer:x-mimeole:thread-index:in-reply-to:message-id; b=hzpR3Hig8WxQ7uWsYGFz/Qvcc01yQxP3Dw0fj1Rvj0zE+0iMIwuhMss91t2c2gcFSLD8CRWwY7KBdNffU7Jr7M5SoclxvBpw7cez5jiBmEwSntroAu2aBPYTTJNLogopZAmUnLhiLJm7kGmJmi26WC060wxyjGokD+mS/FealJM= Received: by 10.54.48.33 with SMTP id v33mr39414wrv; Wed, 09 Feb 2005 18:10:27 -0800 (PST) Received: from casiopea ([201.243.195.128]) by smtp.gmail.com with ESMTP id 33sm35614wra.2005.02.09.18.10.25; Wed, 09 Feb 2005 18:10:27 -0800 (PST) From: =?iso-8859-1?Q?Juancarlo_A=F1ez?= To: Subject: String to list to string Date: Wed, 9 Feb 2005 22:10:03 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 Thread-Index: AcUMvW+QE/WLJIekQCOAqNwsGItdNQCVw5qQ In-Reply-To: <200502070224.23304.jon@jdh30.plus.com> Message-ID: <420ac293.30127b31.1fa8.0b02@smtp.gmail.com> X-Miltered: at nez-perce with ID 420AC293.001 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; haskell:01 strings:01 strings:01 functions:01 string:03 string:03 library:03 standard:07 aren't:11 convert:11 treats:16 there:17 characters:19 chars:21 why:22 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=RCVD_BY_IP autolearn=disabled version=3.0.2 X-Spam-Level: Why aren't there functions in the standard library to convert strings to lists of characters and back? Haskell treats strings as lists of chars by default. Juanco