Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 413 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 413 Bytes

Brain-censored

Code inside this repository is fully written in brainfuck.

> = moves the pointer to the right.
< = moves the pointer to the left.
+ = increases value pointed to by the memory pointer
- = decreases value pointed to by the memory pointer
[ = while(memoryPointerValue != 0)
] = if(memoryPointerValue != 0 jump back to [ 
, = input 1 character.
. = print 1 character to the console