From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Bertalan Fodor (LilyPondTool)" Newsgroups: gmane.lisp.guile.user Subject: 1+ is not R5RS Date: Thu, 18 Dec 2008 16:17:01 +0100 Message-ID: <494A696D.3080201@organum.hu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1229623500 6845 80.91.229.12 (18 Dec 2008 18:05:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 18 Dec 2008 18:05:00 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Thu Dec 18 19:06:07 2008 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.50) id 1LDNFM-0005yY-6S for guile-user@m.gmane.org; Thu, 18 Dec 2008 19:05:42 +0100 Original-Received: from localhost ([127.0.0.1]:43461 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LDNEA-0005aR-67 for guile-user@m.gmane.org; Thu, 18 Dec 2008 13:04:02 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LDKcd-0006is-NJ for guile-user@gnu.org; Thu, 18 Dec 2008 10:17:07 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LDKcc-0006i8-BG for guile-user@gnu.org; Thu, 18 Dec 2008 10:17:07 -0500 Original-Received: from [199.232.76.173] (port=59879 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LDKcb-0006hs-M8 for guile-user@gnu.org; Thu, 18 Dec 2008 10:17:05 -0500 Original-Received: from m2.maxer.hu ([212.92.23.71]:39635 helo=mail1.maxer.hu) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LDKcb-0001Ge-7m for guile-user@gnu.org; Thu, 18 Dec 2008 10:17:05 -0500 Original-Received: from [195.56.119.209] (helo=[127.0.0.1]) by mail1.maxer.hu (Exim 4.69) with esmtpa (fodorb@organum.hu) id 1LDKcZ-0000mD-Iz for guile-user@gnu.org; Thu, 18 Dec 2008 16:17:03 +0100 User-Agent: Thunderbird 2.0.0.18 (Windows/20081105) X-Warning: client sent invalid HELO hostname X-Warning: client has no reverse DNS record X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) X-Mailman-Approved-At: Thu, 18 Dec 2008 12:50:31 -0500 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:7013 Archived-At: Hi, I'm trying to implement a more or less Guile compatible Scheme implementation in Java. However I found that Guile allows 1+ 1- etc. as identifiers. However, the R5RS spec does not allow. Could you provide me some background why 1+ exists, as it is the same as (+ 1, and why is it named like this? Thanks, Bert