___ _____ _ / _ \ _ __ ___ __ _ _ __ |_ _|__ ___ __| | | | | | '_ ` _ \ / _` | '__| | |/ _ \ / _ \ / _` | | |_| | | | | | | (_| | | | | (_) | (_) | (_| | \___/|_| |_| |_|\__,_|_| |_|\___/ \___/ \__,_|
#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Omar Tood"
self.role = "FullStack developer🚀"
self.language_spoken = ["Somalia", "en_US"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = SoftwareEngineer()
me.say_hi()