brainfuck interpreter
brainfuck cli rust
5

Configure Feed

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

renamed 67.bf to 67_ascii.bf and added 67_raw.bf

each expects a different input mode

digi.rip (May 30, 2026, 7:00 PM EDT) e20f9424 9dfa7755

+29
+2
examples/67.bf examples/67_ascii.bf
··· 1 + expects ascii input 2 + 1 3 cell 0 is counter and input 2 4 cell 1 is 6 3 5 cell 2 is 7
+27
examples/67_raw.bf
··· 1 + expects u8 num input 2 + 3 + cell 0 is counter and input 4 + cell 1 is 6 5 + cell 2 is 7 6 + 7 + set up cell 1 8 + 54 divided by 6 is 9 9 + add 9 6 times then move back to cell 0 10 + ++++++[>+++++++++<-] 11 + 12 + set up cell 2 13 + 55 divided by 5 is 11 14 + add 5 11 times 15 + +++++[>>+++++++++++<<-] 16 + 17 + input repeat amt 18 + , 19 + 20 + move data pointer to cell 0 21 + loop starts 22 + moves to cell 1 and prints 23 + moves to cell 2 and prints 24 + moves back to cell 0 25 + decrements counter 26 + repeat until counter is zero 27 + [>.>.<<-]