Bfi Wii

From GameBrew
Revision as of 08:34, 15 January 2023 by HydeWing (talk | contribs)
bfi
File:Bfiwii.jpg
General
Authoranarkavre
TypeDemos
Version0.0.1
LicenseGPL
Last Updated2009/07/03
Links
Download
Source

Bfi is a brainfuck interpreter for the Wii based on Urban Müller's original.

What is Brainfuck interpreter?

Brainfuck is an esoteric programming language invented by Urban Müller in 1993. It is designed to be extremely minimalistic and difficult to program in, with only eight commands, each represented by a single character. These commands manipulate a single data pointer and a single data array, both of which are of infinite size. The commands are:

Command Description
> Increment the pointer.
< Decrement the pointer.
+ Increment the byte at the pointer.
- Decrement the byte at the pointer.
. Output the byte at the pointer.
, Input a byte and store it in the byte at the pointer.
[ Jump forward past the matching ] if the byte at the pointer is zero.
] Jump backward to the matching [ unless the byte at the pointer is zero.

An interpreter is a program that runs Brainfuck code by executing these commands. Brainfuck interpreters are often used as examples of how to write interpreters for programming languages, and as a test of a developer's ability to write code that is both minimalistic and functional.

Media

So, you wanna write a Brainf*ck interpreter? - Camto

External Links

Advertising: