Skip to content

Instantly share code, notes, and snippets.

@shakthimaan
Created June 23, 2014 05:10
Show Gist options
  • Save shakthimaan/b818161b3625d93e4d6e to your computer and use it in GitHub Desktop.
Save shakthimaan/b818161b3625d93e4d6e to your computer and use it in GitHub Desktop.
Equivalent in Emacs Lisp?
(defun lat?
(lambda (l)
(cond
((null? l) #t)
((atom ? (car l)) (lat? (cdr l)))
(else #f))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment