More Lisp Myths
Myth: Weird syntax
- (+ a b) instead of a + b takes some getting used to
- (+ a (/ b c)) less ambiguous than a + b / c
- Parsing lisp programs is trivially easy due to the prefix notation
Myth: Garbage collector is slow
- Truth: If you notice it at all, something is probably wrong