code (this all valid python):
ඞඞඞ = str
ඞඞඞඞ = None
ඞඞඞඞඞ = print
def ඞ(ඞඞ: ඞඞඞ) -> ඞඞඞඞ:
ඞඞඞඞඞ(ඞඞ)
ඞ("ඞඞඞඞඞ")
code (this all valid python):
ඞඞඞ = str
ඞඞඞඞ = None
ඞඞඞඞඞ = print
def ඞ(ඞඞ: ඞඞඞ) -> ඞඞඞඞ:
ඞඞඞඞඞ(ඞඞ)
ඞ("ඞඞඞඞඞ")
no, absolutley not:
EDIT: lol we did the same thing
Yes for some reason ඞ is an allowed character
mhm i used this in an old repl
for my math art 2.0 i was using ඞ for all the shapes lmao
Yeah we’re making a practical version
We could make “ඞ lang”.
Yeah it’s called amolang
ඞ land
Amoland? ඞ ඞ ඞ
yeah you wanna work on it w/ us?
I’ll think about it ඞ ඞ ඞ
ඞMonglang right???
…
I love and hate this at the same time.
Join the team in the PM we created
Goodness children. What next?
Showcase of my brain when I don’t have ideas for projects
Is this a scratch program or scratch language?
Here, I wrote a “compiler” for this:
const_keywords = {
"print" : "_ඞ_",
"int" : "ඞඞඞ",
"str" : "ඞ_ඞ",
"bool" : "ඞ__",
"float" : "ඞඞ_",
"input" : "__ඞ",
"True" : "SUS",
"False" : "SUSPICIOUS",
"len" : "ඞඞඞඞ",
}
def amogus(target_file, output_file):
with open(target_file, "r") as file:
data = file.read()
decs = ""
for keyword in const_keywords.keys():
if keyword in data:
decs += f"{const_keywords[keyword]} = {keyword};"
data = data.replace(keyword, const_keywords[keyword])
decs += "\n"
output = ""
for x in data.split("\n"):
if x:
output += x+"\n"
with open(output_file, "w") as file:
file.write(decs+output)
print("Done")
Input:
fibs = [1, 1]
target = int(input("Fib Target: "))
while len(fibs) != target:
fibs.append(fibs[-1]+fibs[-2])
for fib in fibs:
print(fib)
Output:
_ඞ_ = print;ඞඞඞ = int;__ඞ = input;ඞඞඞඞ = len;
fibs = [1, 1]
target = ඞඞඞ(__ඞ("Fib Target: "))
while ඞඞඞඞ(fibs) != target:
fibs.append(fibs[-1]+fibs[-2])
for fib in fibs:
_ඞ_(fib)
As you can see it 100% optimizes your code and golfs it for you. 10/10 would recommend sus-script over python
Thank you this is the most beautiful thing I’ve ever happened to lay my eyes on