Moshe Zadka wrote:

> On Sun, 7 May 2000, Omer wrote:
>
> > (define linux
> >  (lambda question t))
>
> hmmmmm.....
>
> Didn't you mean
>
> (define linux
>   (lambda question #t))
>
> ?
>
> "t" is just a symbol like any other, while #t is the "canonical truth
> value"

Wrong - in R4RS t is #t and nil is #f. R5RS is not there yet, and it
seems that it will never be.

And to enforce your first presonal impression:

(define linux
  (lambda q
    (lambda (x)
      ((lambda (y) x)))))

And of course lambda should be printed out as lambda symbol!!

>
> --
> Moshe Zadka <[EMAIL PROTECTED]>
> http://www.oreilly.com/news/prescod_0300.html
> http://www.linux.org.il -- we put the penguin in .com
>
> =================================================================
> To unsubscribe, send mail to [EMAIL PROTECTED] with
> the word "unsubscribe" in the message body, e.g., run the command
> echo unsubscribe | mail [EMAIL PROTECTED]

--
Omer Mussaev    051-308-214   mailto:[EMAIL PROTECTED]
systems programmer, Mercury Interactive/RND/Conduct/core




=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to