|
When can we expect a new MEAP?
|
| |
As I see such a huge flurry of comments and markup, it actually inhibits me from further reading the...
|
|
Re: Double vs. single semi-colons
|
| |
The standard lisp convention is:
single semicolons for partial-line comments after program text
...
|
|
Forward reference
|
| |
In the middle of p. 69, you break in with a discussion of the difference between public and private ...
|
|
General suggestion: "list" and "sequence"
|
| |
I am finding a number of places in the text where the distinction here is blurred and, in particular...
|
|
Lists in Lisp
|
| |
The following claim is simply not true:
"In other words, almost all complex data-structures in Li...
|
|
keywords and symbols
|
| |
I was left wondering: are keywords symbols, as in Common Lisp, where they are symbols with the part...
|
|
"rather"
|
| |
There are a fair number of uses of the hedge qualifier "rather." You could probably search for all ...
|
|
Problem with discussion of ratio
|
| |
Clojure does define one more type of number – the ratio. Ratios are created when two integers are di...
|
|
Filter example seems reversed
|
| |
(defn non-zero-expenses [expenses] (filter zero? expenses))
Isn't that going to collect all the z...
|
|
description of map --- lists?
|
| |
On p. 54 I read:
map accepts a function that can take any number of arguments, along with the sam...
|