What is the convention for Lisp filename extension?

yves Baumes picture yves Baumes · Mar 3, 2013 · Viewed 17.3k times · Source

".el" is the convention for filename ending with Emacs Lisp programs. What is the convention when writing Common Lisp programs, please?

Answer

Matt Ball picture Matt Ball · Mar 3, 2013

Wikipedia and the Google Common Lisp Style guide both suggest .lisp.

Practical Common Lisp suggests .lisp or .cl.

Note, I'm not a Common Lisp programmer by any measure, so I have no idea if .lisp is actually used in practice.