hyrule
hyrule copied to clipboard
A utility library for Hy
See hylang/hy#1454, an inadequate attempt to clean this up. This probably needs a full rewrite. An anaphoric macro might work better than the current broken symbol macro approach. Something like...
Instead of ``` hylang => (flatten [[{:one 1 :two 2}] [{:three 3 :four 4}]]) ['\ufdd0:one', '\ufdd0:two', '\ufdd0:three', '\ufdd0:four'] ``` I was expecting ```hylang => (flatten [[{:one 1 :two 2}] [{:three...
What's the rationale for making `False` truthy in `lif`? Because that's just bizarre. I know that `nil` in its various incarnations is the one true false in Common Lisp. But...