#!/usr/bin/python
# -*- coding: utf-8 -*-
class FullStackDeveloper:
def __init__(self):
self.name = "Ashley Olubanjo"
self.role = "Front-end Developer"
self.language_spoken = ["en_UK"]
self.tools = ["Javascript","React","Python", "SQL"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = FullStackDeveloper()
me.say_hi()
I love connecting with different people so if you want to say hi, I'll be happy to meet you more! :)