yurrriq
- Karma
- 2
- Created
- March 1, 2016 (10y ago)
- Submissions
- 0
Highly functional yak stylist.
[ my public key: https://keybase.io/yurrriq; my proof: https://keybase.io/yurrriq/sigs/oiK6A0cdTImMtDlSDaqAfMwWMRc6AqSvRrM92g--RGk ]
[ my public key: https://keybase.io/yurrriq; my proof: https://keybase.io/yurrriq/sigs/oiK6A0cdTImMtDlSDaqAfMwWMRc6AqSvRrM92g--RGk ]
We can have rest args in LFE via something like (defmacro foo args (do 'something (with args))) where (and (>= (length args) 0) (=< (length args) 255)) Note the lack of parentheses around args in the defmacro form.…
Tail recursion optimization, for one. Clojure makes up for it with recur though, so in practice, it's not that big of a deal.