Execute Brain****/JavaScript: Difference between revisions

m
<lang>
m (<code>)
m (<lang>)
Line 2:
Presented here is the core of a Brainf*** interpreter/debugger designed to run within a web page. The full source can be found at http://www.quirkster.com/iano/js/bf.html by viewing the page source.
 
<codelang javascript>
var code; // formatted code
var ip = 0; // current instruction within code
Line 137:
dump();
}
</codelang>
973

edits