Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ltratt/rustbfs
Rust BF interpreters
https://github.com/ltratt/rustbfs
Last synced: about 2 months ago
JSON representation
Rust BF interpreters
- Host: GitHub
- URL: https://github.com/ltratt/rustbfs
- Owner: ltratt
- License: other
- Created: 2023-01-03T12:14:39.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-28T07:45:34.000Z (about 1 year ago)
- Last Synced: 2024-10-11T02:47:54.945Z (3 months ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
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.