Scheme
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
(→Links: add links to more resources) |
||
Line 7: | Line 7: | ||
== Links == | == Links == | ||
* [http://groups.csail.mit.edu/mac/projects/scheme/ MIT Scheme page] | * [http://groups.csail.mit.edu/mac/projects/scheme/ MIT Scheme page] | ||
+ | * Current version of the Scheme standard, [http://www.r6rs.org/ R6RS] | ||
+ | * Previous version of the Scheme standard: [http://www.schemers.org/Documents/Standards/R5RS/ R5RS] | ||
+ | * Working groups and drafts for the next version of the Scheme standard, R7RS, [http://scheme-reports.org/ here] | ||
+ | * List of Scheme resources, papers and implementations [http://www.schemers.org] | ||
+ | * Structure and Interpretation of Computer Programs (aka. "The Scheme Bible") available [http://mitpress.mit.edu/sicp/ here] (based on R5RS) |
Revision as of 21:19, 13 October 2013
Scheme is a dialect of LISP which attempts to keep the semantics clean and simple with few divergent ways to express something (which is a diametrically opposite tack to Perl, which prides itself in having "more than one way to do anything").
Links
- MIT Scheme page
- Current version of the Scheme standard, R6RS
- Previous version of the Scheme standard: R5RS
- Working groups and drafts for the next version of the Scheme standard, R7RS, here
- List of Scheme resources, papers and implementations [1]
- Structure and Interpretation of Computer Programs (aka. "The Scheme Bible") available here (based on R5RS)