Add no_std_repl sample.

This commit is contained in:
Stephen Chung
2021-07-08 14:02:38 +08:00
parent ae1f859225
commit 9418d7b0c8
3 changed files with 272 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
`no-std` REPL Sample
====================
This sample application is the same version as the `rhai-repl` tool, compiled for `no-std`.
[`wee_alloc`](https://crates.io/crates/wee_alloc) is used as the allocator.
To Compile
----------
The nightly compiler is required:
```bash
cargo +nightly build --profile unix -Z unstable-options
```
Available profiles are: `unix`, `windows` and `macos`.
The release build is optimized for size. It can be changed to optimize on speed instead.