Brainfuck (bf) is an esoteric, Turing-complete programming language famous for its minimalistic, eight-character syntax.
-1
votes
1answer
43 views
How would you create a macro of brainfuck to use in a Spoon interpreter [closed]
Any Advice on where I should start with programming this interpreter in C#?
2
votes
2answers
208 views
HTML: Change background color of individual characters in textarea?
I'm making a brainfuck interpreter (brainfuck is a programming language consisting of 8 symbols, those are ,.+-<>[] )
Is there a way to color the background of individual characters in a HTML ...
2
votes
1answer
128 views
Program is ignoring input
I'm trying to write a simple brainfuck interpreter in C++. It works great so far, but it ignores the character input command (',').
The Interpreter:
#include <iostream>
#include ...
3
votes
0answers
86 views
Turing-completeness of a modified version of Brainfuck
Is Brainfuck Turing-complete if the cells are bits, and the + and - operations simply flip a bit? Is there a simple proof that Brainfuck-like languages are Turing-complete regardless of the cell size, ...
4
votes
2answers
157 views
state chart of brainfuck interpreter
i have written an alpha version of an brainfuck ide. i wrote my own interpreter although i had massive help from my teacher regarding loops in the code because i had a really hard time understanding ...
0
votes
1answer
105 views
Example of a recursive function in brainfuck
Straight to the point - I've been learning brainfuck, but I'm having trouble getting round the idea of recursion in it. I've googled for this and searched the forums - so apologies in advance if ...
0
votes
1answer
114 views
How to add two one-digit numbers in BF [duplicate]
Possible Duplicate:
How to calculate the sum of 2 numbers with BrainFuck
Do anyone know how to write a simple BF program that adds two one-digit numbers? I am new to the language and need ...
0
votes
1answer
91 views
Incorrect egrep command [closed]
The problem is the following:
I have a document called brain.txt with lines of (brainfuck) code like this:
++++++++++[>++++++++>++++++>+<<<-]>+++.>+++++.<-.+.>>. word
...
2
votes
2answers
107 views
What's wrong with my BF parser code?
I'm trying to make a program in Java that can read, compile, and run .BF files (if you don't already know: http://wikipedia.org/wiki/BF (programming language)). I've gotten it to work just fine with ...
3
votes
2answers
290 views
Printing a number in brainfuck?
I've searched for a while, but i couldn't find anything that could help me.
Let's say the first cell(or value, etc.) equals 165. How do i print "165"?
My idea was to cut the number into seperate ...
3
votes
2answers
189 views
Options beyond RPython for writing interpreters w/ JITs?
I'm really interested in the PyPy project, but for the 1st (but less well-known) of its purposes listed below:
A set of tools for implementing interpreters for interpreted languages
An ...
-1
votes
3answers
274 views
Multiply a number by 2 in Brainfuck?
Given an arbitrarily long number, how can I output its double? I know how to multiply small numbers together as long as the result is <10, but what about larger integers like 32984335, and doubling ...
7
votes
2answers
798 views
C to brainfuck compiler?
I have a basic program in C that I wish to convert to the language brainfsck but cannot find anything on the subject. I find many "brainfuck to C" converters but not the other way around. I found C2BF ...
2
votes
1answer
571 views
How to calculate the sum of 2 numbers with BrainFuck
I'm trying to write a program with BrainFuck that can read two numbers up to 9, calculate the sum of them and then print the result out, e.g. 3 & 5 give the result 8 .
I'm just trying to ...
21
votes
0answers
691 views
Why won't this server accept HEAD requests? [closed]
I'm working on a simple server to accept GET requests and read them from the standard input. I tried modifying it to add HEAD requests, but it doesn't want to match the pattern. I think I've narrowed ...
-5
votes
1answer
386 views
Brainfuck Interpreter [closed]
Will somebody please describe this brainfuck interpreter for me??
#include <stdlib.h>
char m[9999], *n[99], *r = m, *p = m + 5000, **s = n, d, c;
main()
{
for (read(0, ...
6
votes
3answers
442 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 ...
6
votes
2answers
369 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
--------
...
0
votes
1answer
43 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
334 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 ...
2
votes
3answers
192 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, ...
2
votes
1answer
177 views
Why is my Hello World Program failing?
So, I handwrote this program in BrainFuck:
+++++++++++++++++[>++++>++++>++++>++++>++>+++++>++++>++++>++++>++++<<<<<<<<<<-]
...
6
votes
2answers
336 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 ...
0
votes
2answers
271 views
Brainfuck interpreter using cellular automata
Does anyone have a set of cellular automata rules for a brainfuck interpreter? I assume it would it be similar to implementations of a universal turing machine. Those exist on wolfram site but I ...
1
vote
1answer
364 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 ...
20
votes
7answers
1k 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 ...
2
votes
1answer
300 views
How can I loop through individual NSStrings in a NSString? (Syntax highlighting/coloring)
I'm making a Brainfuck (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 ...
0
votes
2answers
161 views
How to move the pointer by arbitrary amount in BrainFuck?
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?
4
votes
3answers
336 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?
2
votes
4answers
487 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
11
votes
3answers
1k 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 ...
5
votes
5answers
2k 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.
2
votes
4answers
720 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?
17
votes
3answers
3k views
Compiler C to Brainfuck (for harassing a professor)? [closed]
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 ...
1
vote
1answer
2k views
Source for simple programs in Brainfuck? [closed]
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
234 views
Are there any full featured Brainfuck editors available?
Has anyone tried to implement the equivalent of a full featured editor for Brainfuck? What's the closest that is available?
6
votes
2answers
211 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 ...
16
votes
5answers
4k views
tutorials for brainfuck? [closed]
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 ...
0
votes
1answer
152 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 ...
7
votes
3answers
832 views
Implementing Control Structures in Brainfuck
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;
+ ...
2
votes
0answers
651 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
150 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 ...
8
votes
5answers
1k 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):
...
4
votes
6answers
699 views
Implementing Brainfuck loops in an interpreter
I want to build a Brainfuck (Damn that name) interpreter in my freshly created programming language to prove it's turing-completeness.
Now, everything is clear so far (<>+-,.) - except one ...
14
votes
2answers
655 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.
...
3
votes
9answers
768 views
Creating a Brainfuck parser, whats the best method of parsing loop operators?
I'm creating a Brainfuck 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
1k 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 ...
8
votes
6answers
498 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 ...
12
votes
7answers
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 ...