Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was getting really buggered reading javascript today morning so I decided to try out this really absurd language I have known for a while but never really used. I searched for a good source of tutorial but I somehow always end up with the wikipedia page!

Is there actually any good tutorial source out there? I would love it if someone could point me to a source which actually pointed me how to represent all the alphabets in bf..

EDIT:

I have been able to dig out some good references but I am not sure how effective they are given the language is pretty much what it says it is!!!

Here are my links... But I am looking for the most basic tutorial... Including one that points me to how each alphabet is represented.

http://www.iwriteiam.nl/Ha_BF.html

http://cydathria.com/bf/bf_ex1.html

share|improve this question
Not so hard to search, is it? iwriteiam.nl/Ha_BF.html – Noon Silk Aug 24 '10 at 8:26
4  
"Not a real question"? In what way, exactly? – Joachim Sauer Aug 24 '10 at 8:27
5  
My Internet block any "obscene google searches"... Apparently brianfuck qualifies.. – Shouvik Aug 24 '10 at 8:27
4  
Once you're familiar with brainfuck, you might want to look into Ook! – sbi Aug 24 '10 at 8:32
2  
To be honest, I don't think you need more than Wikipedia's article on the language; it's quite detailed. – Andreas Grech Apr 27 '11 at 14:04
show 2 more comments

closed as not constructive by casperOne Oct 16 '12 at 13:52

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 7 down vote accepted

here is a nice page about brainfuck that has a tutorial part http://www.nieko.net/projects/brainfuck

share|improve this answer
+1 for you, I like how concise it is.. I still hope if you can find any reference as to how all the alphabets can be written via bf, you could post the link... Thanks... :) – Shouvik Aug 24 '10 at 8:40

All BF has in the way of arithmatic is increment and decrement. So to represent a letter of the alphabet, you just need to check your handy ASCII table, position the pointer on an empty cell (the initial state will do fine), and increment until it holds the correct code. You might want to look up Peano arithmetic.

share|improve this answer

I wrote a brainfuck tutorial a while back.

share|improve this answer
Your tutorial helped me a lot! Thanks :) – Shouvik Jul 28 '12 at 15:46

For "writing all the alphabets". I don't know exactly, what you mean, but if you mean a program that prints out abcdefghijklmnopqrstuvwxyz, then this here might help you:

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

Also on ideone for proof. ;)

  • The first line sets the first memory value to 26.
  • The second line sets the second memory to 65 (ASCII A) and moves back to the first memory value
  • The third line move to the second memory value, prints it, increments it by 1, moves back to the first memory value, decrements it by 1 and loops if it is not 0 yet

BF rules!

share|improve this answer

I learnt brainfuck from this video:

http://www.youtube.com/watch?v=OnQobTyqEd0

I found it clear and short

share|improve this answer

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