• + 0 comments

    implementation using Common Lisp (defun f(n) (if(> n 1) (list n (f(- n 1))) ) )