The most ඞ program

right here

code (this all valid python):

ඞඞඞ = str
ඞඞඞඞ = None
ඞඞඞඞඞ = print

def ඞ(ඞඞ: ඞඞඞ) -> ඞඞඞඞ:
    ඞඞඞඞඞ(ඞඞ)

ඞ("ඞඞඞඞඞ")
2 Likes

no, absolutley not:
image
EDIT: lol we did the same thing

3 Likes

Yes for some reason ඞ is an allowed character

1 Like

mhm i used this in an old repl

2 Likes

for my math art 2.0 i was using ඞ for all the shapes lmao

2 Likes

interesting…

2 Likes

Yeah we’re making a practical version

1 Like

We could make “ඞ lang”.

2 Likes

Yeah it’s called amolang

1 Like

ඞ land
Amoland? ඞ ඞ ඞ

1 Like

yeah you wanna work on it w/ us? :stuck_out_tongue:

I’ll think about it ඞ ඞ ඞ

1 Like

ඞMonglang right???

1 Like


I love and hate this at the same time.

2 Likes

Join the team in the PM we created

1 Like

:roll_eyes: Goodness children. What next?

Showcase of my brain when I don’t have ideas for projects

1 Like

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

7 Likes

Thank you this is the most beautiful thing I’ve ever happened to lay my eyes on

3 Likes