From 8d31ca5a5a06c607999dcc5f0c09d951832644a6 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Fri, 15 Nov 2013 11:53:33 +0900 Subject: [PATCH] update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b736d00d..5ba9cff6 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ - R7RS compatibility (but partial support) - reentrant design (all VM states are stored in single global state object) -- bytecode interpreter (based on Stack VM technology) +- bytecode interpreter (based on Stack VM) - direct threaded VM - Internal representation by Nan-Boxing - conservative call/cc implementation (users can freely interleave native stack with VM stack) -- exact GC (simple mark and sweep strategy) +- exact GC (simple mark and sweep, partially reference count is also used) - advanced REPL support (multi-line input, etc) - tiny & portable library (all functions will be in `libpicrin.so`) @@ -44,7 +44,7 @@ | 4.2.7 Exception handling | no | `guard` syntax. | | 4.2.8 Quasiquotation | incomplete | nested is unsupported | | 4.2.9 Case-lambda | N/A | | -| 4.3.1 Bindings constructs for syntactic keywords | no | Instead, picrin provides so-called legacy macro facility (`define-macro`). | +| 4.3.1 Bindings constructs for syntactic keywords | no | Instead, picrin provides so-called legacy macro (`define-macro`). | | 4.3.2 Pattern language | -- | see above. | | 4.3.3 Signaling errors in macro transformers | -- | see above. | | 5.1 Programs | yes | |