all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Helmut Eller <eller.helmut@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: lambda inside a let or letrec
Date: Thu, 10 Jun 2010 09:22:33 +0200	[thread overview]
Message-ID: <m27hm7nyh2.fsf@gmail.com> (raw)
In-Reply-To: 6b121cee-8a28-4e27-a733-40d22028e05d@i28g2000yqa.googlegroups.com

* bolega [2010-06-10 07:34+0200] writes:

> My apologies in advance to comp.lang.scheme and comp.lang.lisp.
>
> I am trying to run a certain syntax inside emacs lisp.
>
> I know basically how let works
>
> (let (list of pairs of var value) (function))
>
> This is like a lambda function call , only the order is different.
>
> But the novelty i saw reading a book on common lisp or scheme is this
> and i failed to run in emacs. plz tell what modifications are needed
> and i know they are different.
>
> (   (lambda (n) (+ 1 n)) 3)  ;;; works in emacs
>
> (let
> ((a (lambda (n) (+ 1 n))) (b 3)) (a b))   ;;; does NOT work in emacs
>
> basically we are trying to use / abuse the let in that in the pair we
> define a equal to a lambda. Then another pair where a value of b is
> defined.
>
> next, we want a to operate on b.
>
> Why does it fail ?

The first element of a call like (FUN ARG0 ARG1 ...), that is FUN, is
special.  FUN must be one of:

1) be the name of function (like "+")
2) the name of a macro (like "save-excursion")
3) the name of a special form (like "let", or "while")
4) a lambda form (e.g ((lambda (x) (+ x x) 1)))

So if you write the (a b) the evaluation rules for a are different as
the rules for b.  In your example "a" is a variable but not a function.
In techical terms one would say that a is bound in the variable
namespace but not in the function namespace.

The simplest solution to call a variable is: (funcall a b)

> The scheme/lisp book/paper where it was seen (forgot) used letrec.

It was probably a Scheme book, because the rules are different in this
regard in Scheme.  In Scheme a call (FUN ARG0 ...) is essentially
the same as (funcall FUN ARG0 ...) in Lisp

> Can someone enlighten me how set! and let can be used to formulate
> recursion when the let has no recursion built in it ?

Well, in Emacs Lisp it's easy:

(let ((fac (lambda (x) (if (zerop x) 1 (* x (funcall fac (1- x)))))))
  (funcall fac 10))

that works because Emacs uses dynamic scoping, so you don't need setq.

Helmut


  parent reply	other threads:[~2010-06-10  7:22 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-10  5:34 lambda inside a let or letrec bolega
2010-06-10  5:37 ` bolega
2010-06-10  6:18   ` bolega
2010-06-10  5:37 ` bolega
2010-06-10  7:22 ` Helmut Eller [this message]
2010-06-10 14:28 ` Pascal J. Bourguignon
2010-06-11  0:42 ` bolega

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m27hm7nyh2.fsf@gmail.com \
    --to=eller.helmut@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.