#!/usr/bin/python
# -*- coding: utf-8 -*-
class FullStackDeveloper:
def __init__(self):
self.user = "Caiython"
self.real_name = "Caio Chagas V. Lopes"
self.role = "Software Developer"
# My Site
self.portfolio = "https://caiython.com"
# Contacts
self.phone = "+5513991055120"
self.email = "caio.lopes@caiython.com"
self.linkedin = "https://www.linkedin.com/in/caiocvl/"
def say_hi(self):
return "Hey! Thanks for stopping by, I hope you find my work interesting."
caiython = FullStackDeveloper()
caiython.say_hi()
🎯
Focusing
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


