Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 603 Bytes

File metadata and controls

25 lines (20 loc) · 603 Bytes

👋 Hi There,

import sys

class Student:
    def __init__(self):
        self.name = "Mathijs Deelen"
        self.university = "UBC Computer Science"
        self.focus = [
            "Systems Programming",
            "Distributed Consensus",
            "Performance Optimization"
        ]
        self.currently = "Active learning and Building"

    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()

“”