
class YoungDeveloper:
def __init__(self):
self.age = 14
self.role = "Full Stack Developer"
self.location = "Building from my room π "
self.current_focus = "Creating stunning web experiences"
def say_hi(self):
print("Thanks for dropping by! Let's build something amazing together!")
me = YoungDeveloper()
me.say_hi()const funFacts = {
age: 14,
started_coding_at: 9,
favorite_framework: "Next.js 15+ (App Router is π₯)",
learning: ["Three.js", "WebGL", "Rust"],
fun_fact: "I debug with console.log and I'm not ashamed! π",
life_motto: "Age is just a number, code is eternal",
coffee_consumed: "0 cups (I'm 14, I drink juice π§)",
lines_of_code: "Probably millions... or at least it feels like it!"
};



