Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/igorw/brainfuck-php

Brainfuck implementation.
https://github.com/igorw/brainfuck-php

Last synced: about 2 months ago
JSON representation

Brainfuck implementation.

Awesome Lists containing this project

README

        

# brainfuck-php

![brainfuck](doc/brainfuck.png)

Brainfuck is a turing complete language with 8 instructions.

## Example

Hello World:

>+++++++++[<++++++++>-]<.>+++++++[<++++>-]<+.+++++++..+++.>>>++++++++[<++++>-]
<.>>>++++++++++[<+++++++++>-]<---.<<<<.+++.------.--------.>>+.

Cat:

,[.,]

## Usage

Just pass a filename to the interpreter:

$ bin/brainfuck examples/hello.b

You can also run the debug command to get a log of all instructions.

$ bin/brainfuck debug examples/hello.b

## References

* [Brian Raiter's guide](http://www.muppetlabs.com/~breadbox/bf/)
* [Daniel B. Cristofani's examples](http://www.hevanet.com/cristofd/brainfuck/)
* [Brainfuck on Esolang](http://esolangs.org/wiki/Brainfuck)