Skip to content

Instantly share code, notes, and snippets.

@sli
sli / df.py
Created April 8, 2012 06:35 — forked from kates/bf.py
dog interpreter in python
"""
bf.py
Brainfuck interpreter written in python.
Does not handle input :(
"""
import sys
def run(src):
c = [0] * 30000
p = 0