|
|
|
|
|
by mschaef
3387 days ago
|
|
> skipping the parse step entirely. Not strictly true... there is still parsing involved in reading Lisp data structures from a character stream. (It's just much less involved than in traditional infix languages.) The way to think of it is this:
1) Lisp has a much more comprehensive (and read/write) syntax for its core data structures.
2) Lisp, the language, is defined in terms of those data structures rather than in terms of character sequences and grammar productions. |
|