Skip to content

Instantly share code, notes, and snippets.

@TehilaFavourite
Created May 23, 2023 22:23
Show Gist options
  • Save TehilaFavourite/524d41075a84bf619dd2189217f09bea to your computer and use it in GitHub Desktop.
Save TehilaFavourite/524d41075a84bf619dd2189217f09bea to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
contract SeniorDevA {
function solidityTut() public pure returns (string memory) {
return "I teach solidity!";
}
}
contract SeniorDevB {
function testingSmartContracts() public pure returns (string memory) {
return "I can teach smart contract testing!";
}
}
contract SeniorDevC {
function yulOpcodes() public pure returns (string memory) {
return "I can teach yul opcodes!";
}
}
contract Skilss is SeniorDevA, SeniorDevB, SeniorDevC {
// Superhero-specific functions and variables
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment