Subject: Re: Scheme parsing oddity
From: rpw3@rigden.engr.sgi.com (Rob Warnock)
Date: 2000/08/03
Newsgroups: comp.lang.scheme
Message-ID: <8mbe4f$caimu$1@fido.engr.sgi.com>
David Rush  <kumo@bellsouth.net> wrote:
+---------------
| And FWIW, Scheme48 and PLT both eval the foo and leave an ' token
| pending in the reader input after typing a bare foo'.
+---------------

Which is why you're misinterpreting what PLT (at least) is doing with:

	(define foo' 'bar)

What "eval" is *really* seeing here is:

	(define foo (quote (quote bar)))

So there is actually no such variable as foo' at all.


-Rob

-----
Rob Warnock, 41L-955		rpw3@sgi.com
Applied Networking		http://reality.sgi.com/rpw3/
Silicon Graphics, Inc.		Phone: 650-933-1673
1600 Amphitheatre Pkwy.		PP-ASEL-IA
Mountain View, CA  94043