From 98ac359bbb930a7665ed500348672da2ee0a0e0f Mon Sep 17 00:00:00 2001 From: zekkie Date: Thu, 26 Sep 2024 19:18:45 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 3a735da..7989b9f 100644 --- a/README.md +++ b/README.md @@ -34,16 +34,13 @@ hawktuah "Hello World!" | ongod | True | | bet | or | | cook | input | -| ohio | import | +| fanum tax | import | | diddy | try | -| goofy | for | | ahh | for | | gronk | None | | rizz | class | | opium | return | | pluh | while | -| ratio | elif | -| phonk | lambda | ## Contributing From 70a8dac0d594897c2bb6489a2b1833aa8b715fe7 Mon Sep 17 00:00:00 2001 From: Adonis Date: Wed, 2 Oct 2024 13:05:36 +0200 Subject: [PATCH 2/3] 3 days of work. My god. --- compiler.py | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 105 insertions(+), 3 deletions(-) diff --git a/compiler.py b/compiler.py index bbc6dcb..b446ab2 100644 --- a/compiler.py +++ b/compiler.py @@ -24,8 +24,8 @@ # p:::::::p p:::::::p # ppppppppp ppppppppp # -# I got bored -# Version b.0.3, 9/25/2024 +# Did you pray today? +# Version b.0.4, 10/2/2024 # # @@ -46,9 +46,111 @@ def syntax(code): 'rizz': 'class', 'opium': 'return', 'pluh': 'while', - 'ratio': 'elif' + 'ratio': 'elif', + 'gyatt': 'global', + 'onlyiniohio': 'pass', + 'dukedennis': 'break', + 'didyoupraytoday': 'continue', + 'livvydunne': 'lambda', + 'rizzingup': 'raise', + 'babygronk': 'yield', + 'sussyimposter': 'assert', + 'pibbyglitch': 'async', + 'inreallife': 'await', + 'sigmaalphaomegamalegrindset': 'with', + 'andrewtate': 'is', + 'gooncave': 'del', + 'freddyfazbear': 'from', + 'colleenballinger': 'as', + 'smurfcatvsstrawberryelephant': 'nonlocal', + 'bluddawgshmlawg': 'except', + 'ishowspeed': 'finally', + 'awholebunchofturbulence': 'match', + 'ambatukam': 'case', + 'broreallythinkshescarti': 'in', + 'literallyhittingthegriddytheockyway': 'not', + 'kaicenat': 'and', + 'gartenofbanban': 'raise', + 'noedginginclass': 'return', + 'notthemosquitoagain': 'yield', + 'bussing': 'True', + 'axelharlem': 'False', + 'whopperwhopperwhopperwhopper': 'None', + '12bucklemmyshoe': 'for', + 'goofyahh': 'else', + 'aidenross': 'elif', + 'sincitymondayleftmebroken': 'if', + 'quirkedupwhiteboybustingitdownsexualstylegoatedwiththesauce': 'class', + 'johnpork': 'def', + 'grimaceshake': 'import', + 'kikidoyouloveme': 'raise', + 'huggywuggy': 'assert', + 'nathanielb': 'async', + 'lightskinstare': 'await', + 'biggestbird': 'with', + 'omarthereferee': 'is', + 'amogus': 'as', + 'uncanny': 'global', + 'wholesomeredditchungus': 'nonlocal', + 'keanureeves': 'pass', + 'pizzatower': 'del', + 'zesty': 'continue', + 'poggers': 'break', + 'kumalalasavesta': 'lambda', + 'quandaledingle': 'yield', + 'glizzyrosetoy': 'async', + 'ankhazone': 'await', + 'thugshaker': 'assert', + 'morbintime': 'except', + 'djkhaled': 'finally', + 'sisyphus': 'match', + 'oceangate': 'case', + 'shadowwizardmoneygang': 'in', + 'ayothepizzahere': 'not', + 'nairbuttholewaxing': 'raise', + 'tpose': 'return', + 'ugandaknuckles': 'yield', + 'familyguyfunnymomentscompilationwithsubwaysurfersgameplayatthebottom': 'for', + 'nickeh30': 'else', + 'uwu': 'elif', + 'delulu': 'if', + 'birdcg5': 'class', + 'mewing': 'def', + 'fortnitebattlepass': 'import', + 'allmyfellas': 'raise', + 'gta6': 'assert', + 'backrooms': 'async', + 'gigachad': 'await', + 'based': 'with', + 'cringe': 'is', + 'kino': 'as', + 'redpilled': 'global', + 'nonutnovember': 'nonlocal', + 'pokenutnovember': 'pass', + 'footfetish': 'del', + 'finthechat': 'continue', + 'ilovelean': 'break', + 'looksmaxxing': 'lambda', + 'gassy': 'yield', + 'socialcredit': 'async', + 'bingchilling': 'await', + 'xboxlive': 'assert', + 'mrbeast': 'except', + 'kidnamedfinger': 'finally', + 'bettercaulsaul': 'match', + 'iamasurgeon': 'case', + 'hitormissiguessheynevermisshuh': 'in', + 'ilikeyacutg': 'not', + 'icespice': 'raise', + 'gooningfr': 'return', + 'wegogym': 'yield', + 'kevinjames': 'for', + 'joshhutcherson': 'else', + 'coffinofandyandleyley': 'elif', + 'metalpipefalling': 'if' } + for brainrot_word, python_word in translations.items(): code = code.replace(brainrot_word, python_word) From 0ad432a2948c6c0f38eb361fca6677163786fb9d Mon Sep 17 00:00:00 2001 From: Adonis Date: Wed, 2 Oct 2024 13:12:35 +0200 Subject: [PATCH 3/3] What am I even doing anymore? --- compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.py b/compiler.py index b446ab2..411b640 100644 --- a/compiler.py +++ b/compiler.py @@ -128,7 +128,7 @@ def syntax(code): 'nonutnovember': 'nonlocal', 'pokenutnovember': 'pass', 'footfetish': 'del', - 'finthechat': 'continue', + 'chatisthisreal': 'continue', 'ilovelean': 'break', 'looksmaxxing': 'lambda', 'gassy': 'yield',