Subject: Re: newbee question
From: rpw3@rpw3.org (Rob Warnock)
Date: Wed, 05 Oct 2005 05:03:48 -0500
Newsgroups: comp.lang.lisp
Message-ID: <XsqdneEUIPCZON7eRVn-tg@speakeasy.net>
Marcin 'Qrczak' Kowalczyk  <qrczak@knm.org.pl> wrote:
+---------------
| Ray Dillinger <bear@sonic.net> writes:
| > You may be thinking of Scheme, another Lisp dialect where
| > it is literally true that there are no reserved words.
| 
| There are reserved words in Scheme:
+---------------

Not really:

    > (let ((if 37)
	    (else 53)
	    (lambda 47)
	    (begin 12))
	(+ if else lambda begin))
    149
    > (let ((lambda +)
	    (if /))
	(lambda (if 120 5 6) 47))
    51
    > 


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607