Learn more about me at my personal portfolio site
class SoftwareEngineer:
def __init__(self):
self.name = "Sam Lu"
self.school = "The University of Texas at Austin"
self.major = "Computer Science"
self.degree = "Bachelor of Science"
self.honors = "Turing Scholar"
self.hackathon_wins = ["HackTX", "HackHarvard", "TreeHacks", "PennApps"]
self.programming_languages = ["Java", "Python", "C++", "JavaScript", "etc."]
def say_hi(self):
print("Hello all you amazing people!")
me = SoftwareEngineer()
me.say_hi()