Hacker News new | ask | show | jobs
Ask HN: What's the best Lisp for a Python hobbyist looking to learn?
3 points by swidi 1194 days ago
I vaguely remember toying with newLISP [1] almost a decade ago, but I'd like to start exploring the language again and write some hobbyist-level programs in it.

[1]: http://www.newlisp.org/

2 comments

Oh God, Newlisp. Don't worry about that. Start with Common Lisp. It's probably the most Pythonic in that it's built for building real applications in. SBCL is the open source implementation everyone seems to favor.

Runners up are Racket and Guile.

The "Lisps in Python" (like Hy and Hissp) are nice, but they're not very Lispy. More like Python with sexpr syntax. For Lisp on a Python runtime, I recommend Calysto Scheme for messing around: https://github.com/Calysto/calysto_scheme

It's slow, but it's full Scheme.

What, specifically, is lacking?
From Hy and Hissp? Nothing really, but if you want to learn Lisp, it's best to learn Lisp and not Python in a Lisp skinsuit. The idioms between regular Lisp and Lisp-flavored Python are different.
A good starting point might be Hy [0]. Its claim to fame is being a LISP embedded in Python.

[0]: https://github.com/hylang/hy