Skip to content

Instantly share code, notes, and snippets.

@mpontus
Created March 19, 2015 16:37
Show Gist options
  • Select an option

  • Save mpontus/71cd789d058655c8a258 to your computer and use it in GitHub Desktop.

Select an option

Save mpontus/71cd789d058655c8a258 to your computer and use it in GitHub Desktop.
;; -*- lexical-binding: t; -*-
(defun test9 ()
(let ((a '(10)))
(setcar a (* 2 (car a)))
a))
(test9) ; 20
(test9) ; 40
(test9) ; 80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment