Fixed up readme.
authorTim Vaughan <tgvaughan@gmail.com>
Thu, 2 Aug 2018 07:13:02 +0000 (09:13 +0200)
committerTim Vaughan <tgvaughan@gmail.com>
Thu, 2 Aug 2018 07:14:11 +0000 (09:14 +0200)
README.md

index 7f18e76..5f318a9 100644 (file)
--- 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/).