From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.lisp.guile.devel Subject: Re: expression Date: Thu, 24 Jun 2010 09:27:22 +0200 Message-ID: <876318x545.fsf@ambire.localdomain> References: <867048CD-FB59-4D61-A944-03E4BE4D2960@raeburn.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1277364610 5638 80.91.229.12 (24 Jun 2010 07:30:10 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 24 Jun 2010 07:30:10 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Jun 24 09:30:08 2010 Return-path: Envelope-to: guile-devel@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 1ORgsw-0002QT-6Z for guile-devel@m.gmane.org; Thu, 24 Jun 2010 09:30:06 +0200 Original-Received: from localhost ([127.0.0.1]:38416 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ORgsv-0003K1-4Z for guile-devel@m.gmane.org; Thu, 24 Jun 2010 03:30:05 -0400 Original-Received: from [140.186.70.92] (port=51246 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ORgsi-0003Hb-Lt for guile-devel@gnu.org; Thu, 24 Jun 2010 03:29:54 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ORgsh-00011A-CS for guile-devel@gnu.org; Thu, 24 Jun 2010 03:29:52 -0400 Original-Received: from smtp207.alice.it ([82.57.200.103]:41400) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ORgsh-00010f-3x for guile-devel@gnu.org; Thu, 24 Jun 2010 03:29:51 -0400 Original-Received: from ambire.localdomain (95.244.66.141) by smtp207.alice.it (8.5.124.08) id 4C1A26CF007A5F65 for guile-devel@gnu.org; Thu, 24 Jun 2010 09:29:48 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.69) (envelope-from ) id 1ORgqK-0001jT-5u for guile-devel@gnu.org; Thu, 24 Jun 2010 09:27:24 +0200 In-Reply-To: <867048CD-FB59-4D61-A944-03E4BE4D2960@raeburn.org> (Ken Raeburn's message of "Thu, 24 Jun 2010 02:55:59 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:10559 Archived-At: () Ken Raeburn () Thu, 24 Jun 2010 02:55:59 -0400 Hmm... here's another way, though I've no idea if RnRS lets you not have any expressions in here: scheme@(guile-user)> ,c (begin)=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 Disassembly of #: 0 (assert-nargs-ee/locals 0)=20=20=20=20=20=20 2 (void)=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20 3 (return)=20=20=20=20=20=20=20=20=20=20=20=20=20=20 scheme@(guile-user)> ,c (begin (begin) (begin) 42) Disassembly of #: 0 (assert-nargs-ee/locals 0)=20=20=20=20=20=20 2 (make-int8 42) ;; 42 4 (return)=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20 I think this is fine. =E2=80=98(begin)=E2=80=99 is how things (and "no thi= ngs") are spliced. thi