User:Ractangle/Sandbox
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
An actual APL-like language
NOTE:LJAPL is technically not an APL-like language since it uses the standard ASCII keys symbols and uses a stack. Where as APL, uses some weird costume unicode symbols and uses arrays:END NOTE
Actually this commenting look gave me an idea for a command in my APL-like language
Just made array string command ([...]
), if it encounters an array separator (,
), it will basically sperate the rest of the string (untill it encounters another array separator)
Made comments (∃...∄
)
Forgot to mention that i added the input (□
) and thing that i can't really explain in short (⌅
)
i am planing to make jump command (⊥
), two macro commands and variable declaration for "array?" after i complete my IT homework
And I completely forgot about that
Decided to scrap the jump command. Although i don't have motivation on working with "array?" for now
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("Input a code:") if therm=="out":print(input("Input a sentence:")) elif therm=="condition": conditionif=input("Input a condition:") conditionaction=input("Input an action:") conditionelseaction=input("Input an action:") print("if",conditionif) print(conditionaction) print("else") print(conditionelseaction)