class Lakshya < Person
def initialize
@name = 'Lakshya Gupta'
@age = 20
@superpowers = ['Code Whisperer', 'All-Nighter Programmer', 'Snack Connoisseur']
@education = ['VIT Vellore - B.Tech CSE (Data Science Specialization)']
@hobbies = ['Messing up code', 'Eating Maggi at 2 AM']
end
def languages
{
human: ['English', 'Hindi'],
programming: ['Python', 'Java', 'SQL', 'C++', 'Flutter']
}
end
def current_location
'Gurgaon, IN'
'Lagos, NG'
end
def next_locations
['NASA (dreaming)']
end
def projects
{
'MessIt 🍲' => 'VIT mess menu at your fingertips.',
'Robowars 🤖' => 'Track battles & participants easily.',
'Plant Disease Detection 🌱' => 'Spot plant diseases fast.',
'HackXpertise 2.0 💻' => 'Hackathon portal for smooth chaos.'
}
end
def fun_fact
"Lakshya once spent debugging all night… and the culprit was a single semicolon. 🐛💻"
end
end



