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"]
.