Created
March 24, 2020 15:30
-
-
Save alexroan/4afcbe0d353d4dba2516c39421305cbf to your computer and use it in GitHub Desktop.
example/solidity-inheritance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.5.0; | |
contract Vehicle { | |
} | |
contract Car is Vehicle { | |
} | |
contract Van is Vehicle { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment