KEMURI

From Esolang
Jump to navigation Jump to search

KEMURI is a stack-based language with just six commands:

Cmd Description
~ Pops a byte from the stack and pushes its NOT.
^ Pops two bytes from the stack and pushes their XOR.
" Duplicates the top byte on the stack.
' Rotates top three bytes on the stack (top element becomes the third).
` Puts the ASCII values of "Hello, world!" on the stack ("H" on top).
| Outputs all bytes on the stack as ASCII characters. Recommended to use only at end of program.

Examples

Hello, world!

`|

Computational class

It is obvious that KEMURI is not Turing-complete because KEMURI has no functions for control-flow.

Others

External resources