Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Character    Meaning
  2. >            increment the data pointer (to point to the next cell to the right).
  3. <            decrement the data pointer (to point to the next cell to the left).
  4. +            increment (increase by one) the byte at the data pointer.
  5. -            decrement (decrease by one) the byte at the data pointer.
  6. .            output a character, the ASCII value of which being the byte at the data pointer.
  7. ,            accept one byte of input, storing its value in the byte at the data pointer.
  8. [            if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, jump it forward to the command after the matching ] command*.
  9. ]            if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, jump it back to the command after the matching [ command*.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement