Execute Brain****/Standard ML: Difference between revisions

m
Fixed syntax highlighting.
m (Fixed syntax highlighting.)
 
Line 10:
A more efficient implementation could for example only admit well-bracketed brainfuck programs, and parse bracket blocks first, to replace the ''matchLeft'' and ''matchRight'' which need linear time.
 
<langsyntaxhighlight lang="sml">fun moveLeft (x::l, r) = (l, x::r)
fun moveRight (l, x::r) = (x::l, r)
 
Line 43:
| exec (p as (_, #"]"::_), d ) = exec (matchLeft (moveLeft p), d)
 
fun run s = exec (([], s), ([0], [0]))</langsyntaxhighlight>
 
Example output:
9,476

edits