# ╔═══════════════════════════════════════════════════════════════╗
# ║ Hey, I’m Brandon — a developer who loves building things ║
# ║ that are smart, interactive, and fun to use. ║
# ║ ║
# ║ I’m into exploring how software, AI, and design come together ║
# ║ to create meaningful, creative solutions. ║
# ╚═══════════════════════════════════════════════════════════════╝class Developer:
def __init__(self):
self.name = "Brandon Attram"
self.role = "Developer"
self.interests = ["Software", "AI", "Design"]
self.motivation = ["Curiosity", "Creativity", "Problem Solving"]
def intro(self):
print("Hey, I’m Brandon — a developer who loves building things that are smart, interactive, and fun to use.")
print("Exploring how software, AI, and design connect to create meaningful, creative solutions.")
me = Developer()
me.intro()
# TODO: Keep learning, keep building, keep evolving 🚀
