Tagged Questions

Brainfuck (bf) is an esoteric, Turing-complete programming language famous for its minimalistic, eight-character syntax.

learn more… | top users | synonyms

31
votes
16answers
3k views

What Is The Use Of Brainf*ck

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?
16
votes
7answers
731 views

Optimisation for a brainfuck interpreter

As an exercise to help me learn about interpreters and optimisation, neither of which I know anything about, I have written a brainfuck interpreter in C. It appears to work flawlessly thus far, though ...
14
votes
2answers
512 views

Port dos2unix to brainfuck

I got into an argument over on SuperUser.com about useless answers and found myself challenging the other poster to answer the question in brainfuck. He didn't take me up on it, but now I'm curious. ...
11
votes
8answers
3k views

Detecting infinite loop in brainfuck program

I have written a simple brainfuck interpreter in MATLAB script language. It is fed random bf programs to execute (as part of a genetic algorithm project). The problem I face is, the program turns out ...
9
votes
2answers
828 views

Compiler C to Brainfuck (for harassing a professor)?

A professor of mine has said he'll accept homework assignments in any language we'd care to use. I'm on good enough terms that I'd like to mess with him a bit and submit a valid homework assignment ...
8
votes
3answers
405 views

Making a JIT compiler

I've written a Brainfuck implementation (C++) that works like this: Read input brainfuck file Do trivial optimizations Convert brainfuck to machine code for the VM Execute this machine code in the ...
8
votes
5answers
682 views

what does the '~' mean in python?

what does the '~' mean in python? i found this BF interpreter in python a while ago. import sys #c,i,r,p=0,0,[0]*255,raw_input() c=0 i=0 p=raw_input() r=[0]*255 while c<len(p): ...
6
votes
2answers
171 views

Of which things should I take care if I'm using unboxed type (like Int#) in Haskell / GHC?

I'm trying to write a small script which parses and executes Brainfuck code, to understand the GHC options of optimization, I'm trying to optimize the code in order to be a bit faster and to ...
6
votes
3answers
821 views

tutorials for brainfuck?

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 ...
6
votes
3answers
741 views

Implementing Control Structures in Brainf**k

For the uninitiated, Brainfuck is a Turing-complete language with only 8 commands, all of which have literal equivalents in C: bf c ---------------------- > ++ptr; < --ptr; + ...
5
votes
3answers
176 views

Brainfuck compiler in scala

Want to make some Domain Specific Language(DSL) for practice, first idea it is to write interpreter or compiler of Brainfuck. First idea was to override functions such as they will behave as ...
5
votes
1answer
60 views

How to read multi digit numbers in brainfuck

I want to read in a number with any number of digits with bf. I know how to read in the correct number of digits if I set it manually, like this: ,>,>, 2 Read in 3 digits << 0 -------- ...
5
votes
2answers
108 views

Infinite Counting Loop in Brainfuck

As a debugger/test program for my brainf*ck implementation, I have created the following counting loop: +[[>+]+] With single byte, wrapping cells and with 30k cells with wraparound, this creates ...
5
votes
6answers
405 views

How would one go about testing an interpreter or a compiler?

I've been experimenting with creating an interpreter for Brainfuck, and while quite simple to make and get up and running, part of me wants to be able to run tests against it. I can't seem to fathom ...
4
votes
1answer
117 views

Calculating average of 2 digits

How to calculate average of 2 digits with brainfuck ? I mean i have two digits for example 2 3 and its average is 2.5 for 2 8 we have 5.0 How can this be done?
4
votes
3answers
478 views

Fastest brainfuck interpreter?

Simple question: What is the fastest brainfuck interpreter available? I am asking this because I am about to write my own optimizing bf interpreter and I need something to compare it with.
4
votes
6answers
340 views

Implementing Brainf*ck loops in an interpreter

I want to build a Brainf*ck (Damn that name) interpreter in my freshly created programming language to prove it's turing-completeness. Now, everything is clear so far (<>+-,.) - except one thing: ...
3
votes
9answers
548 views

Creating a Brainf**k parser, whats the best method of parsing loop operators?

I'm creating a Brainf++k parser (in a BASIC dialect) ultimately to create an interpreter but i've realise it's not as straight forward as i first thought. My problem is that i need a way to accurately ...
3
votes
2answers
831 views

HTTP response was too large: 10485810. The limit is: 10485760

i have written an online brainfuck interpreter ..!! the problem is when i take the text input , it gives an error !!... HTTP response was too large: 10485810. The limit is: 10485760. it seems the ...
2
votes
1answer
149 views

How can I loop through individual NSStrings in a NSString? (Syntax highlighting/coloring)

I'm making a Brainf**k (programming language) IDE, and I'm stuck with the syntax coloring. I want to predefine a NSDictionary with substrings, and loop through them and return an array with (or loop ...
2
votes
2answers
128 views

Brainfuck greater sign

How to make < or > sign with brainfuck I want to compare single digits For example 1 2 5 3 9 2 etc. How to do it ? Cheers
2
votes
0answers
440 views

Wrote a quick and dirty Brainfuck - interpreter… what could I do better? [closed]

So, here is my attempt to write a quick and dirty Brainfuck - interpreter: /// <summary> /// This the brainfuck interpreter /// </summary> internal sealed class BrainfuckInterpreter { ...
2
votes
1answer
111 views

How to get a large integer as input and store it in memory

I know that performing arithmetic on large integers in brainfuck, while perhaps quite tedious at times, is entirely possible. However what I'm wondering about is what the generally acceptd ...
1
vote
3answers
65 views

Advanced Java console input

As a self-practice, I'm making a BF interpreter in Java that does I/O through the console. For the most part it's fine, however, as you might be aware, BF takes input one character at a time, ...
1
vote
1answer
97 views

Why is my Hello World Program failing?

So, I handwrote this program in BrainF*** +++++++++++++++++[>++++>++++>++++>++++>++>+++++>++++>++++>++++>++++<<<<<<<<<<-] ...
1
vote
0answers
77 views

SO's 404 page - BF program within C program? [closed]

I have just gotten the StackOverflow 404 page by trying to open a deleted question. It contains this image of what seem to be several programs interleaved in one file, written in C, Brainfuck and ...
1
vote
1answer
136 views

getchar() taking the last char from previous printf()?

I'm writing a compiler/interpreter for the esoteric language brainf*ck (I'm not too sure on StackOverflow's profanity policy, so I'll censor myself until somebody tells me I don't have to), and I'm ...
1
vote
3answers
204 views

Code for multiplying two one digit numbers in Brainfuck

Can someone please post a code piece for multiplying two one-digit numbers in the programming language brainf*ck?
1
vote
1answer
411 views

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 ...
1
vote
3answers
112 views

Are there any full featured Brainf*** editors available?

Has anyone tried to implement the equivalent of a full featured editor for Brainf***? What's the closest that is available?
0
votes
0answers
12 views

Character printing program not behaving properly

I have been making a program that outputs each character before a given one to the screen, but... I've been doing it with Brainfuck! :) I would like to be able to input a character, and see all the ...
0
votes
1answer
107 views

Smallest compiler ever [closed]

Yesterday, I stuck in the internet with this article about programming language called BrainFuck. http://www.muppetlabs.com/~breadbox/bf/ So what is wonder me is this Brainfuck is the ungodly ...
0
votes
2answers
155 views

BrainF**k Interpreter using cellular automata

Does any have a set of cellular automata rules for a brain f**k interpreter. I assume it would it be similar to implementations of a universal turing machine. Those exist on wolfram site but I don't ...
0
votes
2answers
69 views

How to move the pointer by arbitrary amount in BrainF**k?

For example, if the array is like 0 0 0 0 ... 0 0[n]s o m e d a t a 4 9 9 9 9 9 9 8 3 7 ..., how to move the pointer by n, without changing s o m e d a t a 4 9 9 9 ... after the pointer is moved?
0
votes
1answer
135 views

Why is GHC complaining about wrong type?

This little function checks a (finite) Brainfuck string for validity. It check's whether the [ and ] are balanced. The code is very straightforward and written to be tail-recursive: -- checks ...