import sys
class Student:
def __init__(self):
self.name = "Mathijs Deelen"
self.university = "UBC Computer Science"
self.focus = [
"Systems Programming",
"Distributed Consensus",
"Performance Optimization"
]
# Honest: Active learning, not "Expert"
self.currently = "Building a Raft KV Store from scratch & partaking in competitive programming"
def say_hi(self):
print(f"Hi, I'm {self.name}. I like digging into how computers actually work.")
if __name__ == "__main__":
me = Student()
me.say_hi()
good?💭 “42”