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

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

RE: reading binary, non-unix file


From: Drew Adams
Subject: RE: reading binary, non-unix file
Date: Wed, 27 Oct 2004 09:41:05 -0700

Like "let", but the bindings are sequential and interdependent (not parallel
and independent). You can use variables bound previously in subsequent
variable bindings of the same "let*".

E.g.

(let* ((foo 2)          ; define foo
       (bar (* 3 foo))) ; use foo to define bar
  (format "foo: %s, bar: %s" foo bar))

=>

foo: 2, bar: 6

-----Original Message-----
Can someone explain the operation of the 'let*' operation?





reply via email to

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