TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Port of PG's "On Lisp" to Clojure

80 点作者 ecounysis将近 14 年前

5 条评论

ecounysis将近 14 年前
Michael Fogus has also done some work porting On Lisp to Clojure. Chapters 2-5 are here: <a href="http://blog.fogus.me/tag/onlisp/" rel="nofollow">http://blog.fogus.me/tag/onlisp/</a><p>Halloway picked up where Fogus left off.
评论 #2913943 未加载
thurn将近 14 年前
I would absolutely <i>love</i> a more advanced Clojure book in the same vein as "On Lisp", especially if Stuart Halloway is in any way involved. Most of the content can probably be pretty similar modulo differences in the macro systems and such (probably have to axe the reader macros chapter...)
w01fe将近 14 年前
Note that this is from 2008, so some of the code samples are out-of-date (e.g., case is now part of clojure.core).
andrewcooke将近 14 年前
chapter 9 is particularly useful. clojure doesn't have hygienic macros, but it does have namespaces, so it is not as likely as common lisp to silently introduce naming problems. that's explained quite well there (better than i have found anywhere else).
评论 #2911073 未加载
mindblink将近 14 年前
That's great! Thanks, Stuart, for doing this. When I was read PG's "On Lisp", I kept wishing the examples were in Clojure.