On Thu, Jan 31, 2008 at 01:35:56PM -0800, Andrew Lentvorski wrote:
James G. Sack (jim) wrote:

What about
  (1 . 2 3)
maybe: [1, [2, [3,nil]]] .. (there it is again!)

No.  (1 . 2 3) is "Not valid".

DOT indicates a pure pair. It must have exactly one sexpr on the left and exactly one sexpr on the right.

Well, not quite.

  (1 2 . 3) is perfectly valid.

and is the same as [1, [2, 3]] in the above notation.

Later on, we'll get to this for handling variable numbers of arguments.

Dave

--
[email protected]
http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-lpsg

Reply via email to