Comment on Lisp Flavoured Erlang 1.0 released after 8 years of developmentparentComments−yurrriq10yWe 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.Edit: Oops, Robert mentioned this, too.
Comments
We can have rest args in LFE via something like
where Note the lack of parentheses around args in the defmacro form.Edit: Oops, Robert mentioned this, too.