Skip to content

Instantly share code, notes, and snippets.

@pram
Created January 15, 2018 18:48
Show Gist options
  • Save pram/1ac3254417a7662734d8b4683c1782e3 to your computer and use it in GitHub Desktop.
Save pram/1ac3254417a7662734d8b4683c1782e3 to your computer and use it in GitHub Desktop.
Solidity snippet
pragma solidity ^0.4.0;
contract Counter {
int private count = 0;
function incrementCounter() public {
count += 1;
}
function decrementCounter() public {
count -= 1;
}
function getCount() public constant returns (int) {
return count;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment