Last active
May 23, 2018 07:19
-
-
Save shingonu/f9e54b8c23c398d50c3da70816175194 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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