Hacker News new | ask | show | jobs
by alexanderdmitri 2515 days ago
How does Hy manage recursion given the limitations there in Python?
2 comments

It doesn't. Or does the same way as Python: imperative loops. TCO is a key feature of Scheme, but not of Lisps in general. Clojure doesn't have it. You can always trampoline like Clojure's loop does.
10-4, thank you!
What kind of limitations are you referring to?