From WiiBrew
Brainf*ck interpreter for the Wii based on Urban Müller's original.
Warning: In case you are easily offended, I warn you that the XML file has the actual name in it.
Usage
| 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.
|