Last active
December 11, 2017 06:30
-
-
Save blueplanet/5f74167b1e62ac6d0113834de11ce227 to your computer and use it in GitHub Desktop.
Solidity 言語仕様 基本編 ref: https://qiita.com/blueplanet/items/ecd3f4d5552e07e9ef2c
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
contract SingleNumRegister { | |
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