mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
0.6.1 release with several fixes
This commit is contained in:
parent
b4c2bbb625
commit
0edede2ed4
2 changed files with 13 additions and 7 deletions
18
README
18
README
|
@ -11,12 +11,18 @@ and scripting language in C programs. In addition to support for
|
|||
lightweight VM-based threads, each VM itself runs in an isolated heap
|
||||
allowing multiple VMs to run simultaneously in different OS threads.
|
||||
|
||||
The default language is an extended subset of the current draft R7RS
|
||||
Scheme, with support for all libraries. Support for additional
|
||||
languages such as JavaScript, Go, Lua and Bash are planned for future
|
||||
releases. Scheme is chosen as a substrate because its first class
|
||||
continuations and guaranteed tail-call optimization makes implementing
|
||||
other languages easy.
|
||||
The default language is based on an extended subset of the current
|
||||
draft R7RS Scheme, with support for all libraries. To get a pure R7RS
|
||||
repl you can run
|
||||
|
||||
chibi-scheme -xscheme.base
|
||||
|
||||
or see the (chibi repl) library for more options.
|
||||
|
||||
Support for additional languages such as JavaScript, Go, Lua and Bash
|
||||
are planned for future releases. Scheme is chosen as a substrate
|
||||
because its first class continuations and guaranteed tail-call
|
||||
optimization makes implementing other languages easy.
|
||||
|
||||
To build on most platforms just run "make && make test". This will
|
||||
provide a shared library "libchibi-scheme", as well as a sample
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
0.6
|
||||
0.6.1
|
||||
|
|
Loading…
Add table
Reference in a new issue