Guest User

Untitled

a guest
May 16th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.10 KB | None | 0 0
  1. (defun element-count (x &optional (c 0))
  2.   (if (endp x)
  3.       c
  4.       (element-count (rest x) (+ c 1))))
Add Comment
Please, Sign In to add comment