Nameless Language

Nameless Language is a esoteric programming language where you write the source files only using ones and zeros, making it look like binary. It is very similar to the Brainfuck programming language and can be run completely in the web broswer via Javascript. More infomation can be found here.

The last five commands cannot be found in the classic brainfuck language and are aimed to make programming in the nameless language easier.

The commands are:

Command Action
0000 Move pointer to the right.
0001 Move pointer to the left.
0010 Incriment value under pointer.
0011 Decrement value under pointer.
0100 Output current value as ascii.
0101 Ask the user for input as ascii.
0110 If the byte under the pointer is zero, jump the pointer forward to the next matching 0111 command.
0111 If the byte under the pointer is zero, jump the pointer back to the matching 0110 command.
1000 Adds the number represented in binary of the next command.
1001 Subtracts the number represented in binary of the next command.
1010 Sets the current cell to either 1 or 0.
1011 Resets the current cell to value 0.
1100 Resets the pointer to 0.

Nameless Language Interpreter




Console

Using version 0.1.2