Skip to content

Instantly share code, notes, and snippets.

@PatrickAlphaC
Created March 2, 2021 11:45
Show Gist options
  • Select an option

  • Save PatrickAlphaC/77712e006fbcbb4a138e6710b225e82e to your computer and use it in GitHub Desktop.

Select an option

Save PatrickAlphaC/77712e006fbcbb4a138e6710b225e82e to your computer and use it in GitHub Desktop.
pragma solidity ^0.6.7;
contract Counter {
uint256 public count;
constructor() public {
count = 0;
}
function increment(uint256 increment_increase) public {
count = count + increment_increase;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment