LOAD IN TURBO MODE (SHIFT+CLICK on the green flag) Press run to the same program again This is a program that interprets the computer programming language "BrainF__K". It is a programming language that understands only 8 instructions. It works by having a large list of numbers, and a marker keeping track of where in the list the user is. The commands are: + : adds 1 to the current spot - : subtracts 1 form the current spot > : moves one spot down < : moves one spot up , : gets input from the user and sets the current spot to it . : outputs the current spot into the output array [ ] : loops whatever is in the brackets as long as the current spot (at the '[' or ']') is not 0.
Original project: BrainFKInterpreter by funguy Changes from original: Maximum number is now 1 000 000 Added run button ! adds a random number (0 or 1) [not actually in the original language]