Execute Brain****: Difference between revisions

Content added Content deleted
(Add Factor)
Line 1,959: Line 1,959:
=={{header|F_Sharp|F#}}==
=={{header|F_Sharp|F#}}==
[[/F Sharp|Implementation in F#]].
[[/F Sharp|Implementation in F#]].

=={{header|Factor}}==
Factor comes with a Brainf*** interpreter. See the implementation [https://github.com/factor/factor/blob/master/extra/brainfuck/brainfuck.factor here].
{{works with|Factor|0.99 2020-07-03}}
<lang factor>USE: brainf***

"++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++." run-brainf***</lang>
{{out}}
<pre>
Hello World!
</pre>


=={{header|Forth}}==
=={{header|Forth}}==