Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 651 Bytes

File metadata and controls

26 lines (21 loc) · 651 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"
            "Everything Else That Touches Computers :)"
        ]
        self.currently = "Active learning and Building"

    def say_hi(self):
        print(f"Hi, I'm {self.name}. I am looking for a full-time opportunity")

if __name__ == "__main__":
    me = Student()
    me.say_hi()

“”