Source for simple programs in Brainfuck?

Is there a source where I can get multiple simple programs like addition, factorial, fibonacci and others for the brainfuck programming language?

I know that there has been a question posted before here : https://stackoverflow.com/questions/3554670/tutorials-for-brainfuck

But I would like to have a list of simple programs, short bite-sized programs to get comfortable with the language. Any help is welcome. Thanks.


I believe the Wiki article had some simple examples of BrainFuck code. Brainfuck

As for Fibonacci, here's a page with some code (not mine, mind you) generating the Fibonacci sequence up to one hundred. Brainfuck, Fibonacci sequence

Do note that the classic Brainfuck interpreter uses byte variables to store memory cells. So if you'd like a factorial, it wouldn't get you much further than 5!. Nonetheless, I've found an example for you. Brainfuck, Factorial

Extra reading: Simple, and not so simple programs in Brainfuck

链接地址: http://www.djcxy.com/p/67866.html

上一篇: lambda演算的图灵完备性?

下一篇: Brainfuck简单程序的来源?