Skip to content

Instantly share code, notes, and snippets.

@shingonu
Last active May 23, 2018 07:19
Show Gist options
  • Select an option

  • Save shingonu/f9e54b8c23c398d50c3da70816175194 to your computer and use it in GitHub Desktop.

Select an option

Save shingonu/f9e54b8c23c398d50c3da70816175194 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.24;
contract Storage {
uint256 n;
function setN(uint256 _n) public {
n = _n;
}
function getN() public view returns(uint256) {
return n;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment