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

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.

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.