Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Has anyone tried to implement the equivalent of a full featured editor for Brainfuck? What's the closest that is available?

share|improve this question
3  
What features would such an editor include? Source code highlighting (trivial to write a regex for)? Code folding (because that makes glossing over the general structure so much easier)? Perhaps even in-depth static analysis? ;) – delnan Jan 23 '11 at 22:08
Autocomplete? Search-and-replace? Refactoring tools? I originally thought of this question as a fun thought exercise, but it seems like a worthwhile one to answer – blueberryfields Jan 23 '11 at 22:12

3 Answers

up vote 4 down vote accepted

Brainfuck Developer is an IDE for the Brainfuck language.

share|improve this answer

In 2008 I implemented a editor/debugger/interpreter for Brainfuck in JavaScript.
It's browser based, so you don't have to install anything.

You can put breakpoints and run brainfuck step by step.
There are also several examples included.

It's http://www.lordalcol.com/brainfuckjs/

share|improve this answer

Try the Brainfu** machine, I use it for years, and it seems really good.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.