brainfuck interpreter
brainfuck cli rust
5

Configure Feed

Select the types of activity you want to include in your feed.

README: added new args to options section

digi.rip (Jun 9, 2026, 5:45 PM EDT) caa96341 de4ccf20

+3 -1
+3 -1
README.md
··· 28 28 |------|-------------|--------| 29 29 | `-d`, `--data-oob` | data pointer out-of-bounds behavior | `error` (default), `wrap` | 30 30 | `-c`, `--cell-oob` | cell value out-of-bounds behavior | `wrap` (default), `error` | 31 - | `-l`, `--length` | custom tape length | number (default: 30000) | 31 + | `-l`, `--length` | custom tape length | number (default: 30,000) | 32 32 | `-i`, `--input-type` | input mode | `ascii` (default), `raw` | 33 33 | `-o`, `--output-type` | output mode | `ascii` (default), `raw` | 34 + | `-p`, `--delay` | instruction delay in ms (pairs well with tracing) | default: `0` | 35 + | `-t`, `--tracing` | print tape state after every cycle | default: `false` | 34 36 35 37 run a brainfuck script: 36 38 ```bash