in elisp's let, how do you reference a variable bound in the same let while binding another variable?

Viewed 3402
(let ((a 1) (b (+ a 1)))
  (message a))

This throws the error

Debugger entered--Lisp error: (void-variable a)

What's the canonical way to do this?

1 Answers
Related