From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "James Wong" Newsgroups: gmane.emacs.help Subject: Re: Lambda calculus and it relation to LISP Date: Wed, 09 Oct 2002 04:38:33 GMT Organization: Prodigy Internet http://www.prodigy.com Sender: help-gnu-emacs-admin@gnu.org Message-ID: References: <9e8ebeb2.0210041920.2e480123@posting.google.com> <7vbs69b9wr.fsf@gehennom.net> NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1034138554 29575 127.0.0.1 (9 Oct 2002 04:42:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 9 Oct 2002 04:42:34 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17z8g4-0007gs-00 for ; Wed, 09 Oct 2002 06:42:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17z8em-0005l4-00; Wed, 09 Oct 2002 00:41:12 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!207.115.63.138!newscon04.news.prodigy.com!newsmst01.news.prodigy.com!prodigy.com!postmaster.news.prodigy.com!newssvr21.news.prodigy.com.POSTED!89a75ab3!not-for-mail Original-Newsgroups: gnu.emacs.help,comp.lang.lisp,sci.math,sci.logic Original-Lines: 13 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Original-NNTP-Posting-Host: 64.170.154.253 Original-X-Complaints-To: abuse@prodigy.net Original-X-Trace: newssvr21.news.prodigy.com 1034138313 ST000 64.170.154.253 (Wed, 09 Oct 2002 00:38:33 EDT) Original-NNTP-Posting-Date: Wed, 09 Oct 2002 00:38:33 EDT X-UserInfo1: FKPO@MON_JVIRTD[YZHX_UTDFZ\@@FXLM@TDOCQDJ@_@FN@ANVUEAE[YETZPIWWI[FCIZA^NBFXZ_D[BFNTCNVPDTNTKHWXKB@X^B_OCJLPZ@ET_O[G\XSG@E\G[ZKVLBL^CJINM@I_KVIOR\T_M_AW_M[_BWU_HFA_]@A_A^SGFAUDE_DFTMQPFWVW[QPJN Original-Xref: shelby.stanford.edu gnu.emacs.help:105850 comp.lang.lisp:96032 sci.math:550538 sci.logic:61798 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2397 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2397 > > While we are on the topic of Scheme and recursion: > ((lambda (f n) (f f n)) > (lambda (f n) (if (= 0 n) 1 (* n (f f (- n 1))))) 5) > > Recursion without a function actually calling itself! > This was an "Extra for Experts" hw problem for us in Berkeley. I didn't get it, so I tip my hat to you.