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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top