Congrats! Two questions: 1. 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).
uvx hy@1.0.0
gets you into the Hy REPL echo '(print "hi hn")' > hi.hy
uvx hy@1.0.0 hi.hy
prints "hi hn"https://docs.astral.sh/uv/guides/tools/#running-tools
(context: uv can install and manage python versions)