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 diff --git a/compiler.py b/compiler.py index bbc6dcb..411b640 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', + 'chatisthisreal': '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)