Skip to content

Instantly share code, notes, and snippets.

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