We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.
▓
Jump to navigation
Jump to search
▓ is esolang created by cotikthetik Syntax
Syntax
A@b=a+b
A&b=a-b
Let (vaule name) = (vaule)
Int is input as text
Pr a = output a
Pr "(text)" = output text
Ypt vaule = Convert text decimal number to number
Ypo vaule = Convert number to text
Rep[vaule] {(code)} = repeat code vaule times
If vaule # vaule_2 {(code)} = # is any operator
$ start comment
Operators: > < == &&
Other math functions: += -=
examples
Truth machine
Let input = int
Ypt input
If input == 1 {pr 1}
If input == 0 {pr 0}