Viewing profile — yurrriq
yurrriq
HN member- Joined
- Tue, Mar 01, 2016, 1:53 AM UTC
- HN karma
- 2
- Public activity
- 2 items
- HN profile
- View on Hacker News ↗
About yurrriq
Highly functional yak stylist.
[ my public key: https://keybase.io/yurrriq; my proof: https://keybase.io/yurrriq/sigs/oiK6A0cdTImMtDlSDaqAfMwWMRc6AqSvRrM92g--RGk ]
Recent public activity
-
comment
Comment #11306291
We can have rest args in LFE via something like (defmacro foo args (do 'something (with args))) where (and (>= (length args) 0) (= Note the lack of parentheses around args in the d…
-
comment
Comment #11306259
Tail recursion optimization, for one. Clojure makes up for it with recur though, so in practice, it's not that big of a deal.