Y
Hacker News
new
|
ask
|
show
|
jobs
by
alexanderdmitri
2515 days ago
How does Hy manage recursion given the limitations there in Python?
2 comments
gilch
2515 days ago
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.
link
alexanderdmitri
2515 days ago
10-4, thank you!
link
jedimastert
2514 days ago
What kind of limitations are you referring to?
link