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.
Stop writing your code
Jump to navigation
Jump to search
stop writing your code an esolang developed by User:I don't like programming where every character prints random string from [" Stop writing your code!", "Stop write code!", " Stop writing your fucking code"].
The idea behind the language was that the whole language would insult the programmer.
Python interpreter
import random
MESSAGES = [
" Stop writing your code!",
"Stop write code!",
" Stop writing your fucking code"
]
def interpret(code):
output = ""
for char in code:
output += random.choice(MESSAGES) + "\n"
return output
interpret(input())
Examples
Print random string from [" Stop writing your code!", "Stop write code!", " Stop writing your fucking code"]
.