Common Lisp Extensions. Node: Variable Bindings

PREV Generalized Variables UP Control Structure NEXT Conditionals

5.3: Variable Bindings

These Lisp forms make bindings to variables and function names, analogous to Lisp's built-in let form.

See Modify Macros, for the letf and letf* forms which are also related to variable bindings.

  • Dynamic Bindings The `progv' form
  • Lexical Bindings `lexical-let' and lexical closures
  • Function Bindings `flet' and `labels'
  • Macro Bindings `macrolet' and `symbol-macrolet'
  • PREV Generalized Variables UP Control Structure NEXT Conditionals