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

m
Fixed syntax highlighting.
m (Fixed syntax highlighting.)
 
Line 2:
Presented here is the core of a Brainf*** interpreter/debugger written in [[JavaScript]] that is 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.
 
<langsyntaxhighlight lang="javascript">var code; // formatted code
var ip = 0; // current instruction within code
var nest = 0; // current bracket nesting (for Out button)
Line 135:
body();
dump();
}</langsyntaxhighlight>
9,476

edits