Skip to content

Instantly share code, notes, and snippets.

@RFV
Created December 20, 2016 22:19
Show Gist options
  • Save RFV/2b32bb55133727f3b1751e5a4a5c99bd to your computer and use it in GitHub Desktop.
Save RFV/2b32bb55133727f3b1751e5a4a5c99bd to your computer and use it in GitHub Desktop.
Simple Storage Example Smart Contract
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