About language http://en.wikipedia.org/wiki/Brainfuck
Download brainfuck interpreter:
version | file | minimum required JVM |
---|---|---|
0.0.3 | BrainfuckInterpreter2.jar | Java 5 |
0.0.7 | BrainfuckInterpreter2.jar | Java 6 |
1.0 RC1 | bf_j5.tar.bz2 | Java 5 |
1.1 | bfrun1.1_j5.tar.bz2 | Java 5 |
1.1.1 | bfrun1.1.1_j5.tar.bz2 | Java 5 |
Interpreter requires Java Runtime Environment
you can get it at http://java.com/java/download/
|
Download brainfuck test files
factor.b.txt calculates factor an arbitrarily large positive integer
quine.b.txt prints itself source
PI16.BF prints digits of PI
hanoi.bf Towers of Hanoi in Brainf*ck (you can see anything only undex UNIX). in 0.0.3 working about 190 sec, in 0.0.7 about 14s, in 1.0 about 9s, in 1.1 about 5s
ryan-beer.bf Ryan beer sample. prints many beer iterations :)
Interpreter is crossplatform in cuase it inplemented in Java. You can start it at any platform.
Interpreter is free
There are no any warranties: it can contains bugs and you may use it for your own risk
instructions:
open your terminal (ex. cmd in Win32)
type:
cd [your downloaded jar file path]
java -jar BrainfuckInterpreter2.jar
or
java -jar BrainfuckInterpreter2.jar myfile.b
to perform your brainfuck file
Bye bye.