https://esolangs.org
Jump to navigation
Jump to search
https://esolangs.org is an esolang created by User:TheCatFromGithub in 2026.
Instructions
| Instruction | What it does | Example |
|---|---|---|
esolangs X |
The program from this point on is written in esolang X and should be interpreted as such | esolangs brainfuck
|
VARIABLE :// EXPR |
Set VARIABLE equal to EXPR | x :// x + 1
|
.LABEL |
Create a label LABEL | .main
|
org LABEL CONDITION |
Jump to a label LABEL if CONDITION | org add x > 5
|
p EXPR |
Print the result of EXPR | p x
|
s VARIABLE |
Take input and store it in VARIABLE | s x
|
h |
Halt the program | h
|
tt |
The program is now a toddler's toy, and is eligible to be destroyed at any moment | tt
|
Example Programs
p "Hello, World!"