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":ci=input("Condition:");ca=input("Action:");cea=input("Else do action:");print("if "+ci,ca+"else "+cea,sep="\n")