hel-mefe - Overview

hel-mefe/README.md

Hi there 👋

#!/usr/bin/python
# -*- coding: utf-8 -*-
    class SoftwareEngineer:

        def __init__(self):
            self.first_name = "Hicham"
            self.last_name = "Elmefeddel"
            self.role = "SoftwareEngineer"
            self.languages = [C/C++, Python, Javascript/Typescript, Golang]
            self.philosophy = 'Focus on concepts and patterns rather than technologies themselves!'
           
        def introduce(self):
            print("Hi, I'm Hicham Elmefeddel, a software engineer, I love working with Go but I have no issue coding in any other language")

        def currently(self):
            print("Learning all about distributed systems and system design concepts ")

        def say_thanks(self):
            print("Thank you for checking out my github profile")

    me = SoftwareEngineer()
    me.introduce()
    me.currently()
    me.say_thanks()

Leetcode Stats