Hate
		
		
		
		Jump to navigation
		Jump to search
		
| Designed by | User:None1 | 
|---|---|
| Appeared in | 2025 | 
| Computational class | Unknown | 
| Major implementations | Python | 
Hate is esoteric programming language using commands  h,a, t, and e.
Language description
Hate is a useless language for outputting "I hate you!", for outputting ASCII, for incrementing/decrementing, and optional quine.
Hate using commands:
| Command | Description | 
|---|---|
| h | Outputs the accumulator as ASCII | 
| a | Increments the accumulator by 1 | 
| t | Decrements the accumulator by 1 | 
| e | Outputs "I hate you!" | 
| ! | (optional)Quine | 
Interpreters
Python (with "!")
a=0
p=input()
for c in p:
	if c=='e':print("I hate you!",end='')
	elif c=='t':a-=1
	elif c=='a':a+=1
	elif c=='h':print(chr(a),end='')
	elif c=='!':print(p,end='')