Javascript brainfuck interpreter
Last night I wrote a javascript brainfuck interpreter. You can try it out.
It works by reading the brainfuck code from the textarea and compiling it to the equivalent javascript code. That output is then passed to eval(). The input and output are put into arrays of javascript numbers. The string to/from byte array conversion is done before and after evaluating the program.
As far as I can tell my compiler meets brainfucks official portability standard. It should be a good testing platform for those crazy enough to want to write brainfuck programs, but to lazy to install a compiler.