Skip to content

Instantly share code, notes, and snippets.

@hayeah
Created September 3, 2017 10:29
Show Gist options
  • Save hayeah/9e090c8487d20c53a350cb0a44f797d0 to your computer and use it in GitHub Desktop.
Save hayeah/9e090c8487d20c53a350cb0a44f797d0 to your computer and use it in GitHub Desktop.
solidity ^0.4.11;
contract C {
uint256 a;
function setA(uint256 _a) {
a = _a;
}
function getA() returns(uint256) {
return a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment