From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Marco Maggi Newsgroups: gmane.lisp.guile.user Subject: Re: List functions Date: Thu, 02 Dec 2010 11:10:35 +0100 Message-ID: <87k4jsiixw.fsf@rapitore.luna> References: <87oc94ijj0.fsf@rapitore.luna> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1291304725 9551 80.91.229.12 (2 Dec 2010 15:45:25 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 2 Dec 2010 15:45:25 +0000 (UTC) Cc: guile-user@gnu.org To: Hans Aberg Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Thu Dec 02 16:45:21 2010 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1POBLO-0008NC-CQ for guile-user@m.gmane.org; Thu, 02 Dec 2010 16:45:14 +0100 Original-Received: from localhost ([127.0.0.1]:56421 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POBLN-0005iO-Mq for guile-user@m.gmane.org; Thu, 02 Dec 2010 10:45:13 -0500 Original-Received: from [140.186.70.92] (port=52459 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POAJI-0001vw-66 for guile-user@gnu.org; Thu, 02 Dec 2010 09:39:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PO66L-00086B-Cv for guile-user@gnu.org; Thu, 02 Dec 2010 05:09:38 -0500 Original-Received: from relay-pt1.poste.it ([62.241.4.164]:52295) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PO66L-00085q-6b for guile-user@gnu.org; Thu, 02 Dec 2010 05:09:21 -0500 Original-Received: from rapitore.luna (93.147.76.223) by relay-pt1.poste.it (8.5.121.01) (authenticated as marco.maggi-ipsu@poste.it) id 4CF6E1C800012A74; Thu, 2 Dec 2010 11:09:19 +0100 X-Loop: marco@maggi.it X-Mailer: GNU Emacs Original-Lines: 15 X-detected-operating-system: by eggs.gnu.org: Solaris 9 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:8277 Archived-At: "Marco Maggi" wrote: >"Hans Aberg" wrote: >> I am writing on a parser that translates normal function >> syntax in to Guile code. > > I do not know which scenario you are working with, but it > is perfectly possible to convert the input syntax: > > ((sin , cos , tan) 1.2) Sorry, I have been too quick: you cannot use "," because it has special meaning for the reader; but you can use another character like ":". -- Marco Maggi