I have seen examples of the Brainf*ck language, but it's very strange and then I started thinking: What use does the language have?
feedback
|
|
Brainf*ck is my tool of choice to answer simple homework programming questions that did not specify a programming language. A great tool to have a perfectly viable answer more difficult to understand than the original question. For example (real one): Student on the wrong mailing list:
Me being a playful insomniac that day:
| |||||||||||||||||||||
feedback
|
|
The wikipedia page on BrainF*ck is fairly informative on this matter. (quote munged)
| |||||||||||||||||
feedback
|
|
It's designed to be esoteric and to make people ask questions like this. | |||||||||
feedback
|
|
Brainfuck is one of the smallest imaginable languages that is Turing-complete. That is, it can be proven that anything that can be computed on the computers we know today can be computed with Brainfuck. This is a slightly mind-boggling but also purifying revelation. Also, it is an fun language to write a compiler as small as possible for. If I recall correctly, my x86 assembly one was 250 bytes when compiled. | |||||||||||||||||||
feedback
|
|
Shameless plug follows: Don't use Brainf*ck, use its prettier analog: CherryBlossom! You program with haikus and the resulting program is aesthetically pleasing. In fact, here is "Hello World!" in CherryBlossom:
That's a lot prettier than:
| |||||||||||||||||
feedback
|
|
It`s a Turing tarpit. | ||||
|
feedback
|
|
The use of brainf*ck is to demonstrate how simple (as in lack of syntax etc. - not as in easy to use) a language can be while still being turing complete. | ||||
|
feedback
|
|
To challenge yourself! There are a bunch of languages -- Malboge, Brainf*ck, Whitespace, Unlambda -- where the goal is to make even simple coding tasks a brain-stretching challenge. | |||||||||||
feedback
|
|
As pointed out, Brainfuck is Turing-complete - that is, equal in abilities to said machine that looks up in a table and writes symbols on infinite tape. It's been shown that current computers - even the most powerful ones - are in theory nothing more than turbo-fast Turning machine. However, Brainfuck is more pleasant/feasible language to write programs than Turing machine. (YES, i mean it! have your written anything non-trivial for T.M.?). Let's see
Now what is Brainfuck useful for? Not for "production use", that is for sure. But it can be a great li'l language for educational purposes - in particular to write interpreter and/or compiler for. In particular it can be fun learning how to do compiler optimizations. Let's take for example the following BF program that prints "Hello World' (it has to generate the ASCII codes of the leters in the process): A direct (cross)compilation to C may look something like that:
Which is good and fine and works. But the code can also be optimized (http://www.iwriteiam.nl/Ha_bf_online.html) to
Or if your optimizer is really tough (http://code.google.com/p/esotope-bfc/wiki/Optimization), you can end up with something like
| ||||
|
feedback
|
|
Contrary to just about everyone else here. I have used Brainfuck for semi-legitimate uses before. It makes a pretty good analogue for DNA in genetic programming. Not a good choice for GP, mind you, but a good analogue for research into it. It is actually a terrible choice for GP that is meant to actually do something worth-while. I've also used it, in the past, as a way to obfuscate javascript. If you want to do that too, all you need is a javascript BF interpreter, and a BF encoder. A BF encoder takes strings and encodes them in BF. So you plop your legit JS into the encoder, save that as a var and spit it into the interpreter. Then eval it. It is just good clean fun! Right guys? Huh? | ||||
|
feedback
|
|
Having just tried my 1st one, I have to say its to completely kill off any synapses you had left after working all day polishing off a bottle of red wine. GREAT FUN! :-) | ||||
|
feedback
|
|
It is said that Taking matters into his own hands, Tus orders an attack on the sacred city and upon its fall | |||||
feedback
|
|
Besides my own fun, I'd use BF for educational purpose. Code noobs who have never seen anything oher than Java or C# actually get their hand dirty and have to understand...
I find BF an illuminating language to show how low level things can get to those who don't have a clue what, say, assembler is, or a byte. | ||||
|
feedback
|
|
Brainfuck has no real use as it's an esoteric programming language. However, it's quite fun to write programs for small problems and then see those solved with Brainfuck :). | ||||
|
feedback
|
|
Using brainf*ck to program gives you something no other programming language can (besides a really bad headache), and that's making actual programs with lines, dots and those weird bracket things that nobody uses. | ||||
|
feedback
|
|
Brainfuck is useful as (slightly) more accessible form of the Turing Machine model of computation. As its name suggests, it is powerful mental exercise to learn BF when all you know is based on the Von Neumann model (registers and random-access memory). I've found the ideas learned from BF are directly applicable to Postscript programming (and probably Forth, too, for the same reason) because you can treat the stack as a half-tape. | ||||
|
feedback
|