Changes between Initial Version and Version 1 of Ticket #396
- Timestamp:
- 08/15/15 07:48:05 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #396 – Description
initial v1 1 1 Zach pointed out <http://lispblog.xach.com/post/126287122718/syntax-for-reading-a-form-in-a-package> 2 2 3 {{{ 4 Allegro, GCL, SBCL, and possibly other implementations support a syntax that looks like this: 3 Allegro, GCL, SBCL, and possibly other implementations support a syntax that looks like this: 5 4 5 {{{ 6 6 foo::(bar 'baz 42) 7 }}} 7 8 8 A form like that is read as though you had written (foo::bar 'foo::baz 42). I use this syntax sometimes for Quicklisp operations that rely on ql-dist symbols, like installing all available Quicklisp projects:9 A form like that is read as though you had written (foo::bar 'foo::baz 42). I use this syntax sometimes for Quicklisp operations that rely on ql-dist symbols, like installing all available Quicklisp projects: 9 10 }}} 10 11