Skip to content

Instantly share code, notes, and snippets.

@W-Net-AI
Created August 12, 2014 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save W-Net-AI/076d5302327a19a4a3ff to your computer and use it in GitHub Desktop.
Save W-Net-AI/076d5302327a19a4a3ff to your computer and use it in GitHub Desktop.
(defun j (self point)
(defun h (x) (funcall x '= point))
(h (lambda (op &optional val)
(if (eq '= op)
(setf self val)
self)))
(assert (= self point)) (princ self))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment