https://github.com/dimchtz/brainfuck
A Brainfuck collection.
https://github.com/dimchtz/brainfuck
brainfuck brainfuck-interpreter interpreter language
Last synced: about 1 year ago
JSON representation
A Brainfuck collection.
- Host: GitHub
- URL: https://github.com/dimchtz/brainfuck
- Owner: DimChtz
- License: mit
- Created: 2017-11-09T12:21:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-14T11:56:17.000Z (over 8 years ago)
- Last Synced: 2025-03-04T07:04:34.266Z (over 1 year ago)
- Topics: brainfuck, brainfuck-interpreter, interpreter, language
- Language: Rust
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brainfuck
A Brainfuck collection.
# Brainfuck Interpreters ( libraries )
- [rust-brainpreter](https://github.com/DimChtz/brainfuck/tree/master/rust-brainpreter): Brainfuck interpreter in Rust.
# Brainfuck Generators ( libraries )
- [cpp-brainwords](https://github.com/DimChtz/brainfuck/tree/master/cpp-brainwords): Brainfuck code generator in C++.
- [rust-brainwords](https://github.com/DimChtz/brainfuck/tree/master/rust-brainwords): Brainfuck code generator in Rust.
- [py-brainwords](https://github.com/DimChtz/brainfuck/tree/master/py-brainwords): Brainfuck code generator in Python.
- [matlab-brainwords](https://github.com/DimChtz/brainfuck/tree/master/matlab-brainwords): Brainfuck code generator in Matlab.
- [rb-brainwords](https://github.com/DimChtz/brainfuck/tree/master/rb-brainwords): Brainfuck code generator in Ruby.
- [js-brainwords](https://github.com/DimChtz/brainfuck/tree/master/js-brainwords): Brainfuck code generator in Javascript.
# Examples ( brainfuck code )
- [helloworld](https://github.com/DimChtz/brainfuck/blob/master/examples/helloworld.bf): Prints: Hello world!
- [loop10](https://github.com/DimChtz/brainfuck/blob/master/examples/loop10.bf): Loops 10 times and increases a value the same time.
- [ascii](https://github.com/DimChtz/brainfuck/blob/master/examples/ascii.bf): Prints all the ascii characters.