;; -*- lexical-binding: t; -*- ;; (add-to-list 'load-path "~/Programming/emacs-lisp") (require 'rcd-template) (defun my-fun () (let* ((hello-name "Joe") ;; (lexical-binding nil) (template "⟦ hello-name ⟧") (expanded-body (rcd-template-eval template))) (ignore "Avoid compiler warnings" hello-name template) (message "%s" expanded-body))) (my-fun)