RsEPL

RsEPL is a REPL not tied to a compiler version - instead of using the compiler internals to compile and run your code, we just write it to a file and run the compiler on that. This makes it much slower but future-proof.

Prerequisites, installation and usage

RsEPL requires:

Install with cargo:

sh cargo install rsepl

Run as rspl

Commands

RsEPL has a few commands, all beginning with ::

Caveats

This runs quite slowly. Everything you write is appended to a list, which is all written to a rust source file, which is then compiled and run with cargo. This means that every time you run a line all previous lines are also recompiled. Currently there's also no removal of no longer useful lines (one-offs like 2+2 etc).

Future

Features I wish to add:

Name

Can be interpreted as anything from: Read - (slowly) Evaluate - Print - Loop to Rust, Evaluate, Print, Loop

License

Licensed under either of

at your option.

Contribution

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.