TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What's the best Lisp for a Python hobbyist looking to learn?

3 pointsby swidiabout 2 years ago
I vaguely remember toying with newLISP [1] almost a decade ago, but I&#x27;d like to start exploring the language again and write some hobbyist-level programs in it.<p>[1]: http:&#x2F;&#x2F;www.newlisp.org&#x2F;

2 comments

bitwizeabout 2 years ago
Oh God, Newlisp. Don&#x27;t worry about that. Start with Common Lisp. It&#x27;s probably the most Pythonic in that it&#x27;s built for building real applications in. SBCL is the open source implementation everyone seems to favor.<p>Runners up are Racket and Guile.<p>The &quot;Lisps in Python&quot; (like Hy and Hissp) are nice, but they&#x27;re not very Lispy. More like Python with sexpr syntax. For Lisp on a Python runtime, I recommend Calysto Scheme for messing around: <a href="https:&#x2F;&#x2F;github.com&#x2F;Calysto&#x2F;calysto_scheme">https:&#x2F;&#x2F;github.com&#x2F;Calysto&#x2F;calysto_scheme</a><p>It&#x27;s slow, but it&#x27;s full Scheme.
评论 #35100482 未加载
timfiabout 2 years ago
A good starting point might be Hy [0]. Its claim to fame is being a LISP embedded in Python.<p>[0]: <a href="https:&#x2F;&#x2F;github.com&#x2F;hylang&#x2F;hy">https:&#x2F;&#x2F;github.com&#x2F;hylang&#x2F;hy</a>