User:AshuraTheHedgehog
Jump to navigation
Jump to search
Under construction.
These are all of my Brainfuck derivatives:
BF-M
Brainfuck with a memory cell.
Printing numbers is easier.
Instructions
+, -, >, <, ., ,. [, and ] are unchanged.
New
| Instruction | What it does |
|---|---|
| | | Increment the memory |
| _ | Decrement the memory |
| ( | Jump past the matching ) if the memory is 0 |
| ) | Jump to the matching ( if the memory is nonzero |
| / | Put input in memory |
| \ | Print memory |
| " | Print memory as number |
| ' | Print the cell under the pointer as a number |