Skip to content

Instantly share code, notes, and snippets.

@rpaskin
Created September 6, 2019 14:06
Show Gist options
  • Save rpaskin/587d9f695ca8186f24a36861cfccc252 to your computer and use it in GitHub Desktop.
Save rpaskin/587d9f695ca8186f24a36861cfccc252 to your computer and use it in GitHub Desktop.
pragma solidity >=0.4.0 <0.7.0;
// See https://solidity.readthedocs.io/en/v0.5.11/introduction-to-smart-contracts.html
contract SimpleStorage {
uint storedData;
function set(uint x) public {
storedData = x;
}
function get() public view returns (uint) {
return storedData;
}
}
// On Ropsten @ 0x0e289dddd43d844ea0ea750679f9418d2505c897
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment