Small Brainfuck interpreter
Brainfuck is an esoteric programming language with the goal of implementing it with the smallest possible compiler.
➜ python mindfuck.py [FILE]
You can also use it as a module.
#!/usr/bin/env python
import mindfuck
code = """
++++++++++[>+++++++>++++++++++>+++>+<<<<-]
>++.>+.+++++++..+++.>++.<<+++++++++++++++.
>.+++.------.--------.>+.>.
"""
mindfuck.eval(code)