Replies: 1 comment 2 replies
-
There is no standard for Lisp as a whole, despite the best efforts of X3J13, so that would just raise the question of which functions or macros should exist and what they would be named. Some of the things you might expect in some kind of standard Lisp, like Maybe you're trying to update a Hy program written for an older Hy, since |
Beta Was this translation helpful? Give feedback.
-
Just spent a couple of hours trying to find "first" function. Finally found out that it has to be separately imported.
(import toolz.itertoolz [first])
The manual has no mention of this. I think it is fine that functions that already exist in other python libraries are not reimplemented in hy, but at least for "standard" lisp functions like "first" the manual should have an entry that tells where to import them from.
Beta Was this translation helpful? Give feedback.
All reactions