Skip to content

Instantly share code, notes, and snippets.

@travs
Created July 5, 2017 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travs/769f8b64cbdda5b3fccf85daf972097c to your computer and use it in GitHub Desktop.
Save travs/769f8b64cbdda5b3fccf85daf972097c to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.11;
contract Inner {
uint public decimals = 14;
}
contract Outer is Inner {
string public name = "Indiana Jones";
}
pragma solidity ^0.4.11;
contract Inner {
uint public decimals = 14;
}
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