First, brainfuck ## What is brainfuck?
Brainfuck is an esoteric programming language created in 1993 by Urban Müller. ... Brainfuck simply requires one to break commands into microscopic steps. The language's name is a reference to the slang term brainfuck, which refers to things so complicated or unusual that they exceed the limits of one's understanding.
imo, nope. Brainfuck is a fun programming language.
Getting Started to brainfuck your brain?! Here we go!
> = increases memory pointer, or moves the pointer to the right 1 block.
< = decreases memory pointer, or moves the pointer to the left 1 block.
+ = increases value stored at the block pointed to by the memory pointer
- = decreases value stored at the block pointed to by the memory pointer
[ = like c while(cur_block_value != 0) loop.
] = if block currently pointed to's value is not zero, jump back to ...
, = like c getchar(). input 1 character.
. = like c putchar(). print 1 character to the console.This gist is not fully completed. You can help to complete this!
soon:tm: