Skip to content

Instantly share code, notes, and snippets.

@bowbow99
Created October 25, 2011 13:24
Show Gist options
  • Save bowbow99/1312709 to your computer and use it in GitHub Desktop.
Save bowbow99/1312709 to your computer and use it in GitHub Desktop.
#xyzzy のバッククォートをいぢめてみた
;; Clozure CL
CL-USER> (let ((x #\a)) `#(,x))
#(#\a)
;; xyzzy
(let ((x #\a)) `#(,x))
=> #((#:|| x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment