|
|
|
|
|
by yurrriq
3750 days ago
|
|
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.Edit: Oops, Robert mentioned this, too. |
|