diff options
Diffstat (limited to 'topics/lisp/tips-and-tricks.scm')
-rw-r--r-- | topics/lisp/tips-and-tricks.scm | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/topics/lisp/tips-and-tricks.scm b/topics/lisp/tips-and-tricks.scm deleted file mode 100644 index 792980b..0000000 --- a/topics/lisp/tips-and-tricks.scm +++ /dev/null @@ -1,16 +0,0 @@ -# Defining a scheme sexp comment with a reader macro - -=> http://clhs.lisp.se/Body/f_set__1.htm SET-DISPATCH-MACRO-CHARACTER - -``` -CL-USER(1): (set-dispatch-macro-character #\# #\; (lambda (s c n) c n (read s t nil t) (values))) - -CL-USER(2): (+ 3 (+ 2 3) 1) - -9 -CL-USER(3): (+ 3 #;(+ 2 3) 1) - -4 -``` - -Special thanks to Ed Langley on #common-lisp:matrix.org. |