vote up 7 vote down star
5

I have seen examples of the Brainfuck language, but it's very strange and then I started thinking: What use does the language have?

flag

10  
f*cking with people's brains? Are you asking what the language can be used for, or what it is meant to be used for? – jalf Oct 29 at 18:23
I'm partial to [Whirl][1]. Only 2 instructions, 1 and 0, used to access 12 operations and 12 functions on wheels. [1]: bigzaphod.org/whirl – Nick T Oct 29 at 18:31
4  
Pet rant here .. why bother trying to protect people from seeing "fuck" by saying "brainf*ck" in the title, but then tag it as "brainfuck"??? And as if people can't put 1+1=2 and figure out what the * means in the first place. – Peter M Nov 4 at 13:12
BrainF*ck is a commonly accepted rendering of the language name. I've seen some teachers (who the F*ck teaches BF?) use BrainFried. – Martinho Fernandes Nov 10 at 1:19

9 Answers

vote up 49 vote down check

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:

How to make a program do that:

 ABBBC
 B   B
 ABBBC

for: square (5,3)

In fact square contains 2 variables x and y (in the example x = 5 et y = 3) Can someone help me?

Me being a playful insomniac that day:

One should ask for direction, not ask for his/her homework to be done for him/her. And one should indicate which language he/she is using when asking about programming.

That being said here is an answer to your question in brainf*ck (plenty of interpreters available):

######rectangle.bf#######

++++++++++>>++++++++[<++++++++>-]<+>>++++++++[<++++++++>-]
<++>>++++++++[<++++++++>-]<+++>>++++++++[<++++>-]<>,
 >++++++++[<------>-]<>,>++++++++[<------>-]<
[>+>+<<-]>>[<<+>>-]<<<<<<<<.>.>>>>>>--[<<<<<.>>>>>-]<<<<.<<<.
 >>>>>--[>[>+>+<<-]>>[<<+>>-]<<<<<<.>>>>>--[<<<.>>>-]<<<<<.<<.
 >>>>>-]>[>+>+<<-]>>[<<+>>-]<<<<<<<<>.>>>>>>--[<<<<<.>>>>>-]<<<<.<<<.

########################

usage:

$ bf rectangle.bf
35

ABBBC
B   B
ABBBC
link|flag
4  
I wish I could up vote this more than once – Chris Porter Oct 29 at 21:05
3  
An interesting approach, but I wonder if the time investment (writing those BF solutions) is worth the brief moment of joy in the end ~ – Pavel Minaev Oct 29 at 21:50
1  
@Pavel Minaev - as far as i remember it took me roughly 1/2 hour and as i suggested in my answer this was mainly an attempt to bore myself to sleep ... the sarcastic grin at the end is just a bonus. – avelldiroll Oct 29 at 22:14
1  
@avelldiroll: As as fellow insomniac this actually makes me want to learn brainf*ck. – Bob Dylan Nov 6 at 2:50
@Pavel Minaev: it can be a mentally stimulating exercise trying to solve some simple problems in BrainFuck, so I would say, that the investment is worth it. – Martinho Fernandes Nov 10 at 1:15
vote up 3 vote down

It`s a Turing tarpit.

link|flag
vote up 2 vote down

To fuck up your brain..

link|flag
is that the best you've got? – George Jempty Oct 29 at 21:49
I was going to say to fuck with your brain, but close enough. – corymathews Oct 29 at 21:51
@George Jempty, yep. – opc Oct 30 at 6:50
vote up 6 vote down

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.

link|flag
2  
Yes, I once wrote an operating system and a C++ compiler in brainfuck. – shoosh Oct 29 at 18:29
That is nothing. I once ported the linux kernal to a single tape turing machine. – Brian Ensink Oct 29 at 18:37
7  
Iran and North Korea are running their nuclear facilities solely on brainfuck. – h2g2java Oct 29 at 18:47
@h2g2java: lol, very nice joke! – Nathan Campos Oct 29 at 19:42
1  
It's not the smallest; the smallest is a single instruction (en.wikipedia.org/wiki/One_instruction_set_computer/…) - "subtract and branch if negative" being the most common choice. – Pavel Minaev Oct 29 at 21:51
show 1 more comment
vote up 5 vote down

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.

link|flag
4  
Not to mention INTERCAL. – legoscia Oct 29 at 18:24
vote up 3 vote down

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.

link|flag
vote up 1 vote down

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! :-)

link|flag
vote up 24 vote down

The wikipedia page on BrainF*ck is fairly informative on this matter.

Urban Müller created brainfuck in 1993 with the intention of designing a language which could be implemented with the smallest possible compiler,[2] inspired by the 1024-byte compiler for the FALSE programming language.[3] Several brainfuck compilers have been made smaller than 200 bytes. The classic distribution is Müller's version 2, containing a compiler for the Amiga, an interpreter, example programs, and a readme document.

link|flag
1  
Just learnt something new, and I had completly the wrong idea about this. :-) I love it when that happens. – Reallyethical Oct 29 at 18:22
11  
If only people would know about Wikipedia ... – 01 Oct 29 at 19:00
7  
en.wikipedia.org/wiki/Wikipedia – Pavel Minaev Oct 29 at 21:49
vote up 16 vote down

It's designed to be esoteric and to make people ask questions like this.

link|flag
7  
Briliant, a recursive existence, just like the universe. It is there so we can question why its's there ;-). – Gamecat Oct 29 at 18:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.