Tuula Turto
Tuula Turto
This sounds intriguing and useful. Recently I had to hack together something that sounds like this, but it's specifically only for functions and requires extra step for calling them: `(call...
Thanks for writing this down. It clears up lots of questions that I had. I would call the new form `binding` instead of `let` I think. Would make sure that...
This sounds intriguing and useful. Recently I had to hack together something that sounds like this, but it's specifically only for functions and requires extra step for calling them: `(call...
Thanks for writing this down. It clears up lots of questions that I had. I would call the new form `binding` instead of `let` I think. Would make sure that...
They're pretty different. Mine is a (possibly recursive) sequence defined in terms of index. Think of fibonacci: ``` => (defseq fibonacci [n] ... (if (= n 0) 0 ... (=...
I would really love to see this in Hy. While I like using iterators, I know from first hand that some cases are hard to work with and can introduce...
Setting attributes of object from parameters in ``--init--`` is so common that I ended up with small macro just for that (excuse the naming): ``` (defmacro set-attributes [&rest attributes] "set...
The latter one, I expected dictionaries be left as they were. And even if dictionaries were flattened, we shouldn't be discarding half of the information (keeping only keys and discarding...
depends on ~~#144~~
Initial version of bat has been implemented. Colonies and emerging from pits needs to be implemented.