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
Opinions about people
kinda like warsides
Tommyawsome
I might get some angry messages for this, but
I think Tommy is a fine person, he's chill. I am not joking.
One of the reasons why i kinda like Tommy is because he greatly matured
Yayimhere/4kOWO
He is a great esolanger and i actually implemented one of his esolangs
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")