Skip to content

Instantly share code, notes, and snippets.

@kwikiel
Created August 17, 2016 15:30
Show Gist options
  • Save kwikiel/35b51ecfc55862017ccafa9e725dd6c5 to your computer and use it in GitHub Desktop.
Save kwikiel/35b51ecfc55862017ccafa9e725dd6c5 to your computer and use it in GitHub Desktop.
simple.sol
contract SimpleStorage {
uint storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint retVal) {
return storedData;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment