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.
User:Ractangle/Sandbox
Jump to navigation
Jump to search
This is basically where i plan out my programing moves or just do programming. This page is allowed to be edited by me (or my alt accounts) only
Make sure to have contents opened if this gets too long
The first esolang before finding esolangs.org website.
def out():
sentence=input("Input a sentence:")
print(sentence)
def condition():
conditionif=input("Input a condition:")
conditionaction=input("Input an action:")
conditionelseaction=input("Input an action:")
print("if")
print(conditionif)
print(conditionaction)
print("else")
print(conditionelseaction)
therm=input("Input a code:")
if therm=="out":
out()
elif therm=="condition":
condition()
all this script does is just printing commands. Since i know more of python, i'll optimize this and make this language (somewhat) usuable when i finish my FL Studio homework
Okay i don't think i can make this usuable. But i did minify it:
therm=input("Code:")
if therm=="out":print(input("Sentence:"))
elif therm=="condition":print("if "+input("Condition:"),input("Action:")+"else "+input("Else do action:"),sep="\n")