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