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

m
Fixed syntax highlighting.
m (Categorization now in master page)
m (Fixed syntax highlighting.)
 
(One intermediate revision by one other user not shown)
Line 10:
A more efficient implementation could for example only admit well-bracketed brainfuck programs, and parse bracket blocks first, to replace the ''match_left'' and ''match_right'' which need linear time.
 
<langsyntaxhighlight lang="ocaml">let move_left (x::l, r) = (l, x::r)
let move_right (l, x::r) = (x::l, r)
 
Line 66:
exec (match_left (move_left p)) d
 
let run s = exec ([], s) ([0], [0])</langsyntaxhighlight>
 
Example output:
9,476

edits