diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:38 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:38 -0800 |
commit | 64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34 (patch) | |
tree | 1b23b8e8005328194e2fb4bf653806c85050933f /FAQ | |
parent | 5bea21e81ed516440e34e480f2c33ca41aa8c597 (diff) | |
download | slib-upstream/3a5.tar.gz slib-upstream/3a5.zip |
Import Upstream version 3a5upstream/3a5
Diffstat (limited to 'FAQ')
-rw-r--r-- | FAQ | 38 |
1 files changed, 33 insertions, 5 deletions
@@ -1,4 +1,4 @@ -FAQ (Frequently Asked Questions and answers) for SLIB Scheme Library (slib3a4). +FAQ (Frequently Asked Questions and answers) for SLIB Scheme Library (slib3a5). Written by Aubrey Jaffer (http://swiss.csail.mit.edu/~jaffer). INTRODUCTION AND GENERAL INFORMATION @@ -14,9 +14,10 @@ Scheme is a programming language in the Lisp family. [] Which implementations has SLIB been ported to? -SLIB supports Bigloo, Chez, ELK, GAMBIT, Guile, MacScheme, MITScheme, -PLT Scheme (DrScheme and MzScheme), Pocket Scheme, RScheme, scheme->C, -Scheme48, SCM, SCM Mac, scsh, Stk, T3.1, umb-scheme, and VSCM. +SLIB supports Bigloo, Chez, ELK 3.0, GAMBIT 3.0, Guile, JScheme, +MacScheme, MITScheme, PLT Scheme (DrScheme and MzScheme), Pocket +Scheme, RScheme, scheme->C, Scheme48, SCM, SCM Mac, scsh, Stk, T3.1, +umb-scheme, and VSCM. [] How can I obtain SLIB? @@ -46,7 +47,7 @@ Several times a year. [] What is the latest version? -The version as of this writing is slib3a4. The latest documentation +The version as of this writing is slib3a5. The latest documentation is available online at: http://swiss.csail.mit.edu/~jaffer/SLIB.html @@ -206,3 +207,30 @@ As explained in the Repl entry in slib.info (or slib.texi): (require 'macro) (require 'repl) (repl:top-level macro:eval) + + SRFI + +[] What is SRFI? + +"Scheme Requests for Implementation" is a process and informal +standard for defining extensions to Scheme. + +[] Which SRFIs does SLIB support? + +These can be REQUIREd by the listed (srfi) feature name: + +srfi-0: Feature-based conditional expansion construct +srfi-1: List Library +srfi-2: AND-LET*: an AND with local bindings, a guarded LET* special form +srfi-8: receive: Binding to multiple values +srfi-9: Defining Record Types +srfi-11: Syntax for receiving multiple values +srfi-23: Error reporting mechanism +srfi-28: Basic Format Strings +srfi-47: Array +srfi-59: Vicinity +srfi-60: Integers as Bits +srfi-61: A more general cond clause +srfi-63: Homogeneous and Heterogeneous Arrays +srfi-94: Type-Restricted Numerical Functions +srfi-95: Sorting and Merging |