mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-17 10:41:11 +00:00
10 lines
172 B
Solidity
10 lines
172 B
Solidity
|
contract SimpleStorage {
|
||
|
uint storedData;
|
||
|
function set(uint x) {
|
||
|
storedData = x;
|
||
|
}
|
||
|
function get() constant returns (uint retVal) {
|
||
|
return storedData;
|
||
|
}
|
||
|
}
|