Skip to content

Instantly share code, notes, and snippets.

@ZakriaJanjua
Created January 31, 2022 10:44
Show Gist options
  • Save ZakriaJanjua/e7ad4dd7cebb5f2764dd44bb4d0bf8d9 to your computer and use it in GitHub Desktop.
Save ZakriaJanjua/e7ad4dd7cebb5f2764dd44bb4d0bf8d9 to your computer and use it in GitHub Desktop.
counter function in solidity
pragma solidity >=0.7.0 <0.9.0;
contract Counter {
uint public count = 0;
// function getCount() public view returns(uint) {
// return count;
// }
function incrementCount() public {
count++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment