diff options
author | Marcel Ribeiro Dantas <ribeirodantasdm@gmail.com> | 2023-02-16 13:44:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-16 13:44:55 -0300 |
commit | 5e3762d4c67375a1304d6bfb6cac1c86668f620e (patch) | |
tree | bd372e46da845a57d25785d27cad1d56e873c6bf | |
parent | a753730f976b3535e97618671280becbdc7683a6 (diff) | |
parent | 5d44b4ac331ed5ccc5145a26b5681b587ebee442 (diff) |
Merge pull request #4597 from mystuffs/master
[brainfuck/en]: add several docs & fix online interpreter url
-rw-r--r-- | bf.html.markdown | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bf.html.markdown b/bf.html.markdown index 5ede0546..adc58f02 100644 --- a/bf.html.markdown +++ b/bf.html.markdown @@ -4,12 +4,13 @@ filename: bf.bf contributors: - ["Prajit Ramachandran", "http://prajitr.github.io/"] - ["Mathias Bynens", "http://mathiasbynens.be/"] + - ["rilysh", "https://github.com/rilysh"] --- Brainfuck (not capitalized except at the start of a sentence) is an extremely minimal Turing-complete programming language with just 8 commands. -You can try brainfuck on your browser with [brainfuck-visualizer](https://brainfuck-visualizer.herokuapp.com). +You can try brainfuck on your browser with [brainfuck-online](https://copy.sh/brainfuck/). ```bf Any character not "><+-.,[]" (excluding quotation marks) is ignored. @@ -80,3 +81,8 @@ And that's brainfuck. Not that hard, eh? For fun, you can write your own brainfuck programs, or you can write a brainfuck interpreter in another language. The interpreter is fairly simple to implement, but if you're a masochist, try writing a brainfuck interpreter… in brainfuck. + +## Further Reading + * [esolang-wiki](https://esolangs.org/wiki/Brainfuck) + * [learn brainfuck](http://cydathria.com/bf/brainfuck.html) + * [other resources](http://www.muppetlabs.com/~breadbox/bf/) |