help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Lisp anime video


From: Emanuel Berg
Subject: Re: Lisp anime video
Date: Sun, 29 Aug 2021 10:11:30 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

tomas wrote:

>> Is there really a "cudder"?
>
> That's a cuter name for `cdr'

Let me guess, a cuter name for `cddr' is cuddder?

But anyway, the source still doesn't work.

You can do it like this tho

;; this file:
;;   https://dataswamp.org/~incal/scheme/fac.scm

(define (fac n)
  (if (> n 1)
      (* n (fac (- n 1)))
    1) )

(fac 10) ; 3 628 800

with MIT/GNU Scheme. Do (load "fac.scm") after 'scheme' in the
shell. The interpreter is in the mit-scheme Debian package.

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]