An embeddable and extensible scheme dialect built in Rust.
Try it on the Playground · Read the Steel book (WIP)Steel is an embeddable scheme interpreter, with a standalone interpreter/REPL
included as well. The language is implemented as a bytecode virtual machine. At
the moment, it is mostly compliant with R5RS, only missing let-syntax support.
Support for R7Rs is underway.
Warning The API is relatively stable, however it may change at any time while pre 1.0. Care will be taken to keep things backwards compatible where possible.
require and provide much like Racket.syntax-rules and syntax-case macros.For more details, see the book.
This github repository contains a CLI interpreter. To try it out on the online playground, go to the Steel playground. To get started using a REPL with the crates, make sure you first have Rust installed.
Then, clone the repo and run the following command:
cargo run
This will launch a REPL instance that looks something like this:
If you'd like to install everything, just run the following command:
cargo xtask install
This will install:
steelforgecargo-steel-lib (also available via the interpreter)cogs directorySteel can also be installed with Nix. Add the following to your Home Manager config:
home.packages = [
pkgs.steel
];
If you would like to customize the location of installed packages, please set
the STEEL_HOME environment variable. Steel currently follows XDG if present,
and otherwise assumes the default of $HOME/.steel if the STEEL_HOME
environment variable is not already set.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
See CONTRIBUTING.md.
(top 30 of 52)
Hacker News (1)
Rust
76.2%
Scheme
20.9%
Racket
2.7%
An embeddable and extensible scheme dialect built in Rust.
Try it on the Playground · Read the Steel book (WIP)Steel is an embeddable scheme interpreter, with a standalone interpreter/REPL
included as well. The language is implemented as a bytecode virtual machine. At
the moment, it is mostly compliant with R5RS, only missing let-syntax support.
Support for R7Rs is underway.
Warning The API is relatively stable, however it may change at any time while pre 1.0. Care will be taken to keep things backwards compatible where possible.
require and provide much like Racket.syntax-rules and syntax-case macros.For more details, see the book.
This github repository contains a CLI interpreter. To try it out on the online playground, go to the Steel playground. To get started using a REPL with the crates, make sure you first have Rust installed.
Then, clone the repo and run the following command:
cargo run
This will launch a REPL instance that looks something like this:
If you'd like to install everything, just run the following command:
cargo xtask install
This will install:
steelforgecargo-steel-lib (also available via the interpreter)cogs directorySteel can also be installed with Nix. Add the following to your Home Manager config:
home.packages = [
pkgs.steel
];
If you would like to customize the location of installed packages, please set
the STEEL_HOME environment variable. Steel currently follows XDG if present,
and otherwise assumes the default of $HOME/.steel if the STEEL_HOME
environment variable is not already set.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
See CONTRIBUTING.md.
Hacker News (1)
(top 30 of 52)
Rust
76.2%
Scheme
20.9%
Racket
2.7%