Difference between revisions of "Scheme"

From WikEmacs
Jump to navigation Jump to search
Line 18: Line 18:
  
 
* [[Paredit]] is a mode for structured editing of [[S-expression]]s. Useful with any Lisp.
 
* [[Paredit]] is a mode for structured editing of [[S-expression]]s. Useful with any Lisp.
* [https://github.com/jlr/rainbow-delimiters RainbowDelimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in [[ELPA]].
+
* [Rainbow_delimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in [[ELPA]].
  
 
== Useful Links ==
 
== Useful Links ==

Revision as of 12:22, 2 May 2012

Scheme is a functional programming language of the Lisp family. Praised for its minimalist design, Scheme also pioneers the lexical scope, tail-call optimization and first class continuation.

Implementation

Guile

Guile is the GNU Ubiquitous Intelligent Language for Extensions, the official extension language for the GNU operating system.

Racket

Formerly known as PLT Scheme

Major Mode for editing Scheme

Minor Mode for editing Scheme

  • Paredit is a mode for structured editing of S-expressions. Useful with any Lisp.
  • [Rainbow_delimiters] highlights parentheses, brackets, and braces according to their depth, each level in a different colour. Also available in ELPA.

Useful Links