Stak Scheme
The miniature, embeddable R7RS Scheme implementation in Rust
Stak Scheme aims to be:
- An embeddable Scheme interpreter for Rust with very small memory footprint and reasonable performance
- The minimal implementation of the R7RS-small standard
- A subset of Chibi Scheme, Gauche, and Guile
- A portable scripting environment that supports even no-
std
and no-alloc
platforms
For more information and usage, visit the full documentation.
Install
Libraries
To install Stak Scheme as a library in your Rust project, run:
For full examples, see the examples
directory.
Command line tools
To install the Scheme interpreter as a command, run:
Examples
Dynamic scripting in Rust
First, prepare a Scheme script named src/fight.scm
:
(import (scheme base) (stak rust))
(define-rust
make-person
person-throw-pie
person-wasted)
(define me (make-person 4 0.2))
(define you (make-person 2 0.6))
(person-throw-pie me you)
(person-throw-pie you me)
(person-throw-pie me you)
(person-throw-pie you me)
(when (person-wasted you)
(write-string "Congrats!"))
(when (person-wasted me)
(write-string "Oh, no!"))
Then, add a build script at build.rs
to build the Scheme source file
into bytecodes.
use ;
Finally, you can embed and run the Scheme script in a Rust program.
use ;
use Error;
use random;
use ;
const HEAP_SIZE: usize = 1 << 16;
References
- This project is based on Ribbit Scheme, the small and portable R4RS implementation.
- Scheme programming language
- The R7RS-small standard