.# ian / xuan system boot
name = "ian" or "xuan"
pronouns = "he/him"
gender_identity = "masculine"
identity = {
"romantic_orientation": "cupioromantic",
"sexual_orientation": "pansexual",
"ethnicity": ["Malay", "δΈε½δΊΊ"],
"labels": [
"boyfailure",
"problematic",
"SiTe",
"ISTJ",
"Sp/So 9w2",
"FLEV 4431",
"phleg-sang",
"scuai"
]
}
def introduce(user):
print(f"π¨ Booting system: {user['name']}")
print(f"πΉ Pronouns: {user['pronouns']}")
print(f"πΉ Gender: {user['gender_identity']}")
print(f"πΉ Orientation: {user['romantic_orientation']} + {user['sexual_orientation']}")
print(f"π Ethnicity: {', '.join(user['ethnicity'])}")
print(f"π Labels: {', '.join(user['labels'])}")
print("β
Introduction sequence complete.")
introduce({
"name": name,
"pronouns": pronouns,
"gender_identity": gender_identity,
"romantic_orientation": identity["romantic_orientation"],
"sexual_orientation": identity["sexual_orientation"],
"ethnicity": identity["ethnicity"],
"labels": identity["labels"]
})