Created
December 24, 2017 20:04
-
-
Save thestuntcoder/ad6f3574a610fa2eb575c2003c0e417a 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.18; | |
contract Miles { | |
uint8 public miles; | |
function Voting() public { | |
miles = 1; | |
} | |
function totalMiles() public constant returns (uint8) { | |
return 2; | |
} | |
function addMiles() public { | |
miles += 1; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment