From: Tim Vaughan Date: Thu, 2 Aug 2018 07:13:02 +0000 (+0200) Subject: Fixed up readme. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=scheme.forth.jl.git;a=commitdiff_plain;h=a4f9979d526884e5a1762af1d9bb12101067c1c6 Fixed up readme. --- diff --git a/README.md b/README.md index 7f18e76..5f318a9 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,17 @@ life as a fairly direct port of Peter Micheaux's [Bootstrap Scheme](https://github.com/petermichaux/bootstrap-scheme) (as described in [this wonderful series of blog posts](http://peter.michaux.ca/articles/scheme-from-scratch-introduction)) from -C to forth, but also includes pre-evaluation syntactic analysis, variadic -compound function support, mark-sweep garbage collection, quasiquotation, a -basic (non-hygienic) macro system and first-class continuations via -`call-with-current-continuation`. - -In future, I plan to also implement reified continuations and a more -complete numerical tower to bring it closer to -[R5RS](http://www.schemers.org/Documents/Standards/R5RS/). +C to forth, but also includes: + +* variadic compound function support, +* pre-evaluation syntactic analysis, +* mark-sweep garbage collection, +* quasiquotation, +* a basic (non-hygienic) macro system and +* first-class continuations via `call-with-current-continuation`. + +In future, I plan to also implement a more complete numerical tower to +bring it closer to [R5RS](http://www.schemers.org/Documents/Standards/R5RS/). The goal is for the interpreter to be complete enough to be used to complete the majority of the exercises found in [SICP](http://sarabander.github.io/sicp/).