Brainhook
Jump to navigation
Jump to search
Brainhook is a esolang created by User:Yayimhere to minimize Brainfuck
memory
memory is a tape the continues to the right forever. the tape pointer moves right every command. each cell is 6 bit and wrap(so if 0 is decremented its set to 63)
commands
command | description |
---|---|
# |
go back to the first cell of the tape |
- |
decrement the cell |
:...:n |
loops ... while current cell non zero with nesting n
|
X |
NOP |