1 This is just a small Brainfuck interpreter written in Python.
4 ./brainfuck.py yourcode.bf
6 You can use it as a module as well:
10 ++++++++++[>+++++++>++++++++++>+++>+<<<<-]
11 >++.>+.+++++++..+++.>++.<<+++++++++++++++.
12 >.+++.------.--------.>+.>.
15 brainfuck.evaluate(sourcecode)
17 http://en.wikipedia.org/wiki/Brainfuck
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.