You can interact with the Engine by giving it a list of numbers. This represents a program in Clifford Code, described below. The Engine will execute the code and output the number at the top of the stack when the program terminates.
Clifford code is made up of a list of whitespace-separated numbers that are processed in sequence. Each instruction is made up of one or more digits, depending on the type of instruction. The first digit always specifies the type of instruction.
Pushes its argument onto the stack
Discards the number at the top of the stack
Removes the top two numbers from the stack and pushes the sum back to the stack
Removes the top two numbers from the stack and pushes the difference back to the stack
Removes the top two numbers from the stack and pushes the product back to the stack
Removes the top two numbers from the stack and pushes the quotient back to the stack
Description coming soon...
Description coming soon...