-
-
Save travs/769f8b64cbdda5b3fccf85daf972097c to your computer and use it in GitHub Desktop.
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.4.11; | |
contract Inner { | |
uint public decimals = 14; | |
} | |
contract Outer is Inner { | |
string public name = "Indiana Jones"; | |
} |
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.4.11; | |
contract Inner { | |
uint public decimals = 14; | |
} |
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.4.11; | |
import "./Inner.sol"; | |
contract Outer is Inner { | |
string public name = "Indiana Jones"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment