Length of a list

From mojo_puzzler
Jump to navigation Jump to search
Return to: Insightful Comments

Matt Howard Keybase 20211019 8:00am EST:

(defun get_length (my_list)
  (if my_list
      (+ 1 (get_length (r my_list)))
      0 
  )
)