Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ltratt/rustbfs

Rust BF interpreters
https://github.com/ltratt/rustbfs

Last synced: about 2 months ago
JSON representation

Rust BF interpreters

Awesome Lists containing this project

README

        

* `interp1`: the basic BF interpreter.
* `interp2`: the basic BF interpreter with bracket caching.
* `interp3`: a BF interpreter with opcodes and bracket caching.
* `interp4`: a BF interpreter with opcodes and inline bracket caching.
* `interp5`: a BF interpreter with opcodes, inline bracket caching, and Add
optimisation.
* `interp6`: a BF interpreter with opcodes, inline bracket caching, and
Add/Sub/Left/Right optimisations.
* `interp7`: a BF interpreter with opcodes, inline bracket caching,
Add/Sub/Left/Right optimisations, and Zero optimisation.
* `interp8`: reorganised as compiler / optimiser / evaluator.