R7RS compatibility is no longer 'partial'

This commit is contained in:
Yuichi Nishiwaki 2014-06-16 02:34:24 +09:00
parent 1fb2ac9aa4
commit 3bc12d883e
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ Picrin is a lightweight scheme implementation intended to comply with full R7RS
## Features
- R7RS compatibility (but partial support)
- R7RS compatibility
- reentrant design (all VM states are stored in single global state object)
- bytecode interpreter (based on stack VM)
- direct threaded VM

View File

@ -3,7 +3,7 @@ Introduction
Picrin is a lightweight scheme implementation intended to comply with full R7RS specification. Its code is written in pure C99 and does not requires any special external libraries installed on the platform.
- R7RS compatibility (but partial support)
- R7RS compatibility
- reentrant design (all VM states are stored in single global state object)
- bytecode interpreter (based on stack VM)
- direct threaded VM