Hacker News new | ask | show | jobs
by hollerith 2430 days ago
(a b . c) is (a b) with the final nil replaced with c.

In other words, it is (a . (b . c)).

1 comments

Thanks, that clarifies it completely!