Embedding Scheme in Rust
Rust, as a compiled language, makes it challenging to modify the behavior of programs dynamically. In this article, we embed a small Scheme interpreter called Stak Scheme in Rust to dynamically change the behavior of a program without stopping the process.
You can find the following codes in this article at the examples/hot-reload directory in the Stak Scheme repository.
Table of contents
What is Scheme?
What is Stak Scheme?
Embedding Scheme scripts in a Rust program
Initializing a crate
Adding ...
Read more at raviqqe.com