#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareDeveloper:
def __init__(self):
self.name = "Fabian"
self.role = "Software Developer"
self.location = "European Union"
self.language_spoken = ["en_US", "de_DE", "it_IT"]
def say_hi(self):
print("Thanks for dropping by, hope you enjoy my open source contributions!")
me = SoftwareDeveloper()
me.say_hi()
NOTE: Top languages does not indicate my skill level, it's a github metric of which languages I have used the most code on github.