This file contains 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; | |
// Will show inheritance between two contracts | |
contract Minter{ | |
string name public; | |
mapping(address => uint256) balances public; | |
function mint() public{ | |
balances++; |