'Python' is not recognized

From Esolang
Jump to navigation Jump to search

'Python' is not recognized is a variant of 'Python' is not recognized as an internal or external command, operable program or batch file. by User:Ractangle

Syntax

; End the program

: Push the next symbol to the stack

? Check if the two top values on the stack are equal. If they're are, execute the code inside the brakets. Otherwise skip to the nearest closing bracket

@ Gets user input

| Prints the next charecter

: Creates a label

j Jumps to the label with the symbol next to it

[...] Comment (if the ? is not added behind the opening braket)

Examples

Hello, world!

|H|e|l|l|o|,| |w|o|r|l|d|!

Truth-machine

:0@?[|0;]:r|1jr

Implementation

Python implementation