Initial release.
[robmyers:dogecode.git] / dogecode / Python-Brainfuck-README
1 This is just a small Brainfuck interpreter written in Python.
2
3 Usage:
4  ./brainfuck.py yourcode.bf
5
6 You can use it as a module as well:
7   import brainfuck
8
9   sourcecode = """
10     ++++++++++[>+++++++>++++++++++>+++>+<<<<-]
11     >++.>+.+++++++..+++.>++.<<+++++++++++++++.
12     >.+++.------.--------.>+.>.
13   """
14
15   brainfuck.evaluate(sourcecode)
16
17 http://en.wikipedia.org/wiki/Brainfuck
18
19 (C) Sebastian Kaspari 2011
20 This programm is licensed under the terms of the
21 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE.
22