class BackendEngineer:
def __init__(self):
self.name = "Aleks Zenitsin"
self.role = "Backend enginer"
self.language_spoken = ["ru_Ru", "en_US"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = SoftwareEngineer()
me.say_hi()
contract BlockchainDeveloper {
string constant myDevTag = "@magicaleks";
string constant deFiProject = "Ruble stablecoin";
bool constant isOpenForFunding = true;
function contactWithMe() external payable returns (string memory) {
return "Check my profile and contact me with your favourite messenger!";
}
}