Function: clojure-introduce-let

clojure-introduce-let is an autoloaded, interactive and byte-compiled function defined in clojure-mode.el.

Signature

(clojure-introduce-let &optional N)

Documentation

Create a let form, binding the form at point.

With a numeric prefix argument the let is introduced N lists up.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;;###autoload
(defun clojure-introduce-let (&optional n)
  "Create a let form, binding the form at point.
With a numeric prefix argument the let is introduced N lists up."
  (interactive "P")
  (clojure--introduce-let-internal (read-from-minibuffer "Name of bound symbol: ") n))