Arc Forumnew | comments | leaders | submitlogin
1 point by Jesin 6043 days ago | link | parent

I haven't tested this and it's not very good anyway, but here's this:

  (def list* args
    (aif (cddr args) (cons (car args) (apply list* it))
         (cdr args) (cons (car args) it)
         (car args)))