You look really nice today. Your shirt goes really well with your eyes.
Examples
help
Brainfuck is a simple esoteric programming language with only 8 commands.
The language operates on an infinitely long "tape" of cells, with each cell holding a single value.
The "pointer" determines which cell is the current cell.
>
Increment the tape pointer
<
Decrement the tape pointer
+
Increment the current cell
-
Decrement the current cell
.
Output the ASCII value of the current cell
,
Get input from user and store in current cell
[
If current cell is zero, go past matching ], else do nothing
]
Return to matching [
Brainfuck Debugger
Copyright 2020 Dagan Martinez under the MIT license