Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Emacs Lisp

< >

Emacs Lisp is an open source programming language created in 1985 by Richard Stallman.

#268on PLDB 39Years Old 1kRepos
REPL · Try It Online · Wikipedia · Docs

Emacs Lisp is a dialect of the Lisp programming language used as a scripting language by Emacs (a text editor family most commonly associated with GNU Emacs and XEmacs). It is used for implementing most of the editing functionality built into Emacs, the remainder being written in C (as is the Lisp interpreter itself). Emacs Lisp is also referred to as Elisp, although there is also an older, unrelated Lisp dialect with that name. Read more on Wikipedia...


Example from hello-world:
(message "Hello World")
Example from Linguist:
(print "Dude!")
Example from Wikipedia:
(defun switch-to-next-window-in-split () (set-window-buffer (next-window) (other-buffer))) (advice-add 'split-window-vertically :before #'switch-to-next-window-in-split)

Language features

Feature Supported Example Token
Strings ✓ "Hello world" "
Print() Debugging ✓ print
Comments ✓ ; A comment
Line Comments ✓ ; A comment ;
Semantic Indentation X
MultiLine Comments X
- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements · Part of the World Wide Scroll