Skip to content

Instantly share code, notes, and snippets.

@thestuntcoder
Created December 24, 2017 20:04
Show Gist options
  • Save thestuntcoder/ad6f3574a610fa2eb575c2003c0e417a to your computer and use it in GitHub Desktop.
Save thestuntcoder/ad6f3574a610fa2eb575c2003c0e417a to your computer and use it in GitHub Desktop.
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