Skip to content

Instantly share code, notes, and snippets.

@sepisoltani
Last active October 8, 2021 11:28
Show Gist options
  • Save sepisoltani/32a4a89ac2893c2f53c63f8ceeb26b65 to your computer and use it in GitHub Desktop.
Save sepisoltani/32a4a89ac2893c2f53c63f8ceeb26b65 to your computer and use it in GitHub Desktop.
contract Animal {
function walk() public returns (string memory) {
return "walking";
}
}
contract Cat is Animal {
function run() public returns (string memory) {
return "running";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment