From Esolang
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}