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

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

Re: Another question about lambdas


From: Gregory Heytings
Subject: Re: Another question about lambdas
Date: Sun, 11 Dec 2022 00:13:31 +0000



(let* ((x 'l)
       (f (lambda () x))
       (x 'd))
  (funcall f))


I think the following is clearer:

(let ((x 'l))
  (let ((f (lambda () x)))
    (let ((x 'd))
      (funcall f))))




reply via email to

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