Hy 1.0 – Lisp dialect for Python
11–20 of 131 posts
Re: Hy 1.0 – Lisp dialect for Python
#12Does Hy also work with Mojo?
Edit: actually, confusingly, the GitHub repository for Mojo doesn't have an interpreter. The language is still proprietary.
Re: Hy 1.0 – Lisp dialect for Python
#13I enjoyed the less serious part a lot. I wish more programming related projects could embrace the whimsical. That might the best way to honor the python tradition in any case :)
Re: Hy 1.0 – Lisp dialect for Python
#14Re: Hy 1.0 – Lisp dialect for Python
#15I saw the original lightning talk that introduced Hy to the world at Pycon those ages ago. Soon after I met Paul and started contributing to the early versions of Hy. I was responsible for the CL-style kwargs (you’re welcome), some minor innards, and a library or two.
Whimsy is useful, especially to keep enthusiasm up. It’s nice when hackers can be hackers and not every thing is business.
While I haven’t been involved in years it brings a smile to me face to see the project continues apace. What a great milestone!
Re: Hy 1.0 – Lisp dialect for Python
#16Re: Hy 1.0 – Lisp dialect for Python
#17Re: Hy 1.0 – Lisp dialect for Python
#18Congrats! Could you compare the language with Clojure?
Re: Hy 1.0 – Lisp dialect for Python
#19Does Hy also work with Mojo?
I'm not sure. I was going to say that Mojo is proprietary software and so I've never tried it, but I just checked and apparently it's free now. If nothing else, you can probably get a lot of Hy code to run on Mojo via `hy2py`, if Mojo supports a lot of Python as it claims to. Edit: actually, confusingly, the GitHub repository for Mojo doesn't have an interpreter. The language is still proprietary.
Re: Hy 1.0 – Lisp dialect for Python
#201. Does it support REPL-driven development? (condition system, breakloop, etc.)
2. Is there a standalone distribution? Distributing python in itself is a hassle, ideal situation would be to simply distribute a single Hy binary that contains all dependencies within it (either statically linked or as a zip file extracted in tmp directory).