zzz
Jump to navigation
Jump to search
- This article is not detailed enough and needs to be expanded. Please help us by adding some more information.
The zzz programming language was created by Alexander van Teijlingen and a (seemingly broken) compiler can be found here (from the Wayback Machine; retrieved on 12 May 2012). It is a member of the TrivialBrainfuckSubstitution family of programming languages.
Commands
| Brainfuck | zzz | Description |
|---|---|---|
| > | "zz" | Move the pointer to the right |
| < | "-zz" | Move the pointer to the left |
| + | "z" | Increment the memory cell under the pointer |
| - | "-z" | Decrement the memory cell under the pointer |
| . | "zzz" | Output the character signified by the cell at the pointer |
| , | "-zzz" | Input a character and store it in the cell at the pointer |
| [ | "z+z" | Jump past the matching ] if the cell under the pointer is 0 |
| ] | "z-z" | Jump back to the matching [ |
See also
- brainfuck, the exact same language, just with a different set of lexical tokens