Difference between revisions of "CL"

From WikEmacs
Jump to navigation Jump to search
(added basic cl package page)
 
m (→‎External Links: update url)
 
Line 23: Line 23:
 
== External Links ==
 
== External Links ==
  
* [http://dto.github.com/notebook/require-cl.html An interactive guide to the GNU Emacs CL package]
+
* [http://dto.github.io/notebook/require-cl.html An interactive guide to the GNU Emacs CL package]
  
 
[[Category:Built-in Package]]
 
[[Category:Built-in Package]]

Latest revision as of 20:03, 5 April 2013

CL
Description Partial Common Lisp implementation in Emacs Lisp
Author Dave Gilespie
Maintainer FSF
Source http://bzr.savannah.gnu.org/lh/emacs/emacs-24/annotate/head:/lisp/emacs-lisp/cl.el

GNU Emacs includes a package called "'CL'" that implements a large subset of Common Lisp. Although it can be used to port Common Lisp code, its main purpose is to provide Emacs Lisp developers with a set of powerful programming tools.


Basic setup

(require 'cl)

See Also

External Links