beowulf/resources/sexpr/length.lsp

1 line
77 B
Common Lisp

(SETQ LENGTH '(LAMBDA (L) (COND ((EQ NIL L) 0) (T (ADD1 (LENGTH (CDR L)))))))