-
Notifications
You must be signed in to change notification settings - Fork 0
Brainfuck Commands
The Brainfuck language consists of only eight simple commands, each consisting of a single character:
Command | Description |
---|
| Move the pointer to the right < | Move the pointer to the left
- | Increment the byte at the data pointer
- | Decrement the byte at the data pointer . | Output the byte at the data pointer , | Input a byte into memory cell at the data pointer [ | Jump past the matching ] if the byte at the data pointer is 0 ] | Jump back to the matching [ if the byte at the data pointer is not 0
All characters other than ><+-.,[] should be considered comments and ignored.
BrainJuck - Rapid Application Development with only 3 bits!
Copyright (c) 2016-2021 Anar Software LLC. <http://anars.com>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>
Brainfuck Language
BrainJuck Tools
- What is BrainJuck?
- Brainfuck Interpreter
- Brainfuck Optimizer
- Brainfuck Generator
- Brainfuck Formatter
Examples
ASCII Characters