Skip to content

Instantly share code, notes, and snippets.

@payers1
Created September 4, 2017 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save payers1/d66ece6a429a78b9b262e7d066833135 to your computer and use it in GitHub Desktop.
Save payers1/d66ece6a429a78b9b262e7d066833135 to your computer and use it in GitHub Desktop.
contract MyClass {
int public counter;
function MyClass() {
counter = 0;
}
function increment() {
counter += 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment