Path: utzoo!utgpu!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!rutgers!bellcore!texbell!killer!pollux!ti-csl!m2!gateley From: gateley@m2.csc.ti.com (John Gateley) Newsgroups: comp.lang.scheme Subject: Re: Y, again (long) Message-ID: <65837@ti-csl.CSNET> Date: 16 Dec 88 20:33:04 GMT References: <8812151447.AA06672@chamartin.ai.mit.edu> Sender: news@ti-csl.CSNET Reply-To: gateley@m2.UUCP (John Gateley) Organization: TI Computer Science Center, Dallas Lines: 28 In article <8812151447.AA06672@chamartin.ai.mit.edu> jinx@zurich.ai.mit.edu writes: <[Lots of stuff about Y] <;; version 3, "standard" normal order < <(define fact < ((lambda (f) < ((lambda (g) (f (g g))) < (lambda (g) (f (g g))))) < (lambda (fact) < (lambda (n) < (if (= n 0) < 1 < (* n (fact (- n 1)))))))) <