diff options
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -51,5 +51,11 @@ fn main() { } ``` +The [`examples/`](examples/) folder provides additional examples: + +- [`fib.rs`](examples/fib.rs) jit compile a function to compute the `fibonacci` sequence. +- [`add.rs`](examples/add.rs) jit compile a function calling another function compiled into the example. +- [`tiny_vm.rs`](examples/tiny_vm.rs.rs) define a minimal `virtual machine (VM)` which demonstrates a simple jit compiler for translating VM guest software. + ## License This project is licensed under the [MIT](LICENSE) license. |