Skip to content

Instantly share code, notes, and snippets.

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